Skip to content

Commit d34516d

Browse files
Merge pull request #107868 from stevemunk/drawing-error-visualizer
Error Drawing Visualizer - Grammatical improvements
2 parents 3d2e6f7 + 664ceef commit d34516d

File tree

1 file changed

+18
-11
lines changed

1 file changed

+18
-11
lines changed

articles/azure-maps/drawing-error-visualizer.md

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Use Azure Maps Drawing Error Visualizer
3-
description: In this article, you'll learn about how to visualize warnings and errors returned by the Creator Conversion API.
3+
description: This article demonstrates how to visualize warnings and errors returned by the Creator Conversion API.
44
author: eriklindeman
55
ms.author: eriklind
66
ms.date: 02/17/2023
@@ -12,21 +12,21 @@ services: azure-maps
1212

1313
# Using the Azure Maps Drawing Error Visualizer with Creator
1414

15-
The Drawing Error Visualizer is a stand-alone web application that displays [Drawing package warnings and errors](drawing-conversion-error-codes.md) detected during the conversion process. The Error Visualizer web application consists of a static page that you can use without connecting to the internet. You can use the Error Visualizer to fix errors and warnings in accordance with [Drawing package requirements](drawing-requirements.md). The [Azure Maps Conversion API](/rest/api/maps/v2/conversion) returns a response with a link to the Error Visualizer only when an error is detected.
15+
The *Drawing Error Visualizer* is a stand-alone web application that displays [Drawing package warnings and errors] detected during the conversion process. The Error Visualizer web application consists of a static page that you can use without connecting to the internet. You can use the Error Visualizer to fix errors and warnings in accordance with [Drawing package requirements]. The [Azure Maps Conversion API] returns a response with a link to the Error Visualizer only when an error is detected.
1616

1717
## Prerequisites
1818

1919
* An [Azure Maps account]
2020
* A [subscription key]
2121
* A [Creator resource]
2222

23-
This tutorial uses the [Postman](https://www.postman.com/) application, but you may choose a different API development environment.
23+
This tutorial uses the [Postman] application, but you may choose a different API development environment.
2424

2525
## Download
2626

27-
1. Upload your drawing package to the Azure Maps Creator service to obtain a `udid` for the uploaded package. For steps on how to upload a package, see [Upload a drawing package](tutorial-creator-indoor-maps.md#upload-a-drawing-package).
27+
1. Upload your drawing package to the Azure Maps Creator service to obtain a `udid` for the uploaded package. For steps on how to upload a package, see [Upload a drawing package].
2828

29-
2. Now that the drawing package is uploaded, we'll use `udid` for the uploaded package to convert the package into map data. For steps on how to convert a package, see [Convert a drawing package](tutorial-creator-indoor-maps.md#convert-a-drawing-package).
29+
2. Now that the drawing package is uploaded, use `udid` for the uploaded package to convert the package into map data. For steps on how to convert a package, see [Convert a drawing package].
3030

3131
>[!NOTE]
3232
>If your conversion process succeeds, you will not receive a link to the Error Visualizer tool.
@@ -48,7 +48,7 @@ This tutorial uses the [Postman](https://www.postman.com/) application, but you
4848

4949
## Setup
5050

51-
Inside the downloaded zipped package from the `diagnosticPackageLocation` link, you'll find two files.
51+
The downloaded zipped package from the `diagnosticPackageLocation` link contains the following two files.
5252

5353
* _VisualizationTool.zip_: Contains the source code, media, and web page for the Drawing Error Visualizer.
5454
* _ConversionWarningsAndErrors.json_: Contains a formatted list of warnings, errors, and other details that are used by the Drawing Error Visualizer.
@@ -59,7 +59,7 @@ Unzip the _VisualizationTool.zip_ folder. It contains the following items:
5959
* _static_ folder: source code
6060
* _index.html_ file: the web application.
6161

62-
Open the _index.html_ file using any of the browsers below, with the respective version number. You may use a different version, if the version offers equally compatible behavior as the listed version.
62+
Open the _index.html_ file using any of the following browsers, with the respective version number. You may use a different version, if the version offers equally compatible behavior as the listed version.
6363

6464
* Microsoft Edge 80
6565
* Safari 13
@@ -72,11 +72,11 @@ After launching the Drawing Error Visualizer tool, you'll be presented with the
7272

7373
:::image type="content" source="./media/drawing-errors-visualizer/start-page.png" alt-text="Drawing Error Visualizer App - Start Page":::
7474

75-
The _ConversionWarningsAndErrors.json_ file has been placed at the root of the downloaded directory. To load the _ConversionWarningsAndErrors.json_, drag & drop the file onto the box. Or, click on the box, find the file in the `File Explorer dialogue`, and upload the file.
75+
The _ConversionWarningsAndErrors.json_ file has been placed at the root of the downloaded directory. To load the _ConversionWarningsAndErrors.json_, drag & drop the file onto the box. Or, select on the box, find the file in the `File Explorer dialogue`, and upload the file.
7676

7777
:::image type="content" source="./media/drawing-errors-visualizer/loading-data.gif" alt-text="Drawing Error Visualizer App - Drag and drop to load data":::
7878

79-
Once the _ConversionWarningsAndErrors.json_ file loads, you'll see a list of your drawing package errors and warnings. Each error or warning is specified by the layer, level, and a detailed message. To view detailed information about an error or warning, click on the **Details** link. An intractable section will then appear below the list. You may now navigate to each error to learn more details on how to resolve the error.
79+
The _ConversionWarningsAndErrors.json_ contains a list of your drawing package errors and warnings. To view detailed information about an error or warning, select the **Details** link. An intractable section appears below the list. You may now navigate to each error to learn more details on how to resolve the error.
8080

8181
:::image type="content" source="./media/drawing-errors-visualizer/errors.png" alt-text="Drawing Error Visualizer App - Errors and Warnings":::
8282

@@ -85,8 +85,15 @@ Once the _ConversionWarningsAndErrors.json_ file loads, you'll see a list of you
8585
Learn more by reading:
8686

8787
> [!div class="nextstepaction"]
88-
> [Creator for indoor maps](creator-indoor-maps.md)
88+
> [Creator for indoor maps]
8989

9090
[Azure Maps account]: quick-demo-map-app.md#create-an-azure-maps-account
91+
[Azure Maps Conversion API]: /rest/api/maps/v2/conversion
92+
[Convert a drawing package]: tutorial-creator-indoor-maps.md#convert-a-drawing-package
93+
[Creator for indoor maps]: creator-indoor-maps.md
94+
[Creator resource]: how-to-manage-creator.md
95+
[Drawing package requirements]: drawing-requirements.md
96+
[Drawing package warnings and errors]: drawing-conversion-error-codes.md
97+
[Postman]: https://www.postman.com/
9198
[subscription key]: quick-demo-map-app.md#get-the-subscription-key-for-your-account
92-
[Creator resource]: how-to-manage-creator.md
99+
[Upload a drawing package]: tutorial-creator-indoor-maps.md#upload-a-drawing-package

0 commit comments

Comments
 (0)