You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-maps/creator-indoor-maps.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,10 @@ Creator services create, store, and use various data types that are defined and
60
60
61
61
Creator collects indoor map data by converting an uploaded drawing package. The drawing package represents a constructed or remodeled facility. For information about drawing package requirements, see [Drawing package requirements].
62
62
63
-
Use [Data Upload] to upload a drawing package. After the Drawing packing is uploaded, the Data Upload API returns a user data identifier (`udid`). The `udid` can then be used to convert the uploaded package into indoor map data.
63
+
Follow the steps outlined in the [How to create data registry] article to upload the drawing package into your Azure storage account then register it in your Azure Maps account.
64
+
65
+
> [!IMPORTANT]
66
+
> Make sure to make a note of the unique identifier (`udid`) value, you will need it. The `udid` is required to convert the uploaded package into indoor map data.
64
67
65
68
## Convert a drawing package
66
69
@@ -228,7 +231,7 @@ An application can use a feature stateset to dynamically render features in a fa
228
231
229
232
### Wayfinding (preview)
230
233
231
-
The [Wayfinding service] enables you to provide your customers with the shortest path between two points within a facility. Once you've imported your indoor map data and created your dataset, you can use that to create a [routeset]. The routeset provides the data required to generate paths between two points. The wayfinding service takes into account things such as the minimum width of openings and may optionally exclude elevators or stairs when navigating between levels as a result.
234
+
The [Wayfinding service] enables you to provide your customers with the shortest path between two points within a facility. Once you've imported your indoor map data and created your dataset, you can use that to create a [routeset]. The routeset provides the data required to generate paths between two points. The wayfinding service takes into account things such as the minimum width of openings and can optionally exclude elevators or stairs when navigating between levels as a result.
232
235
233
236
Creator wayfinding is powered by [Havok].
234
237
@@ -314,7 +317,6 @@ The following example shows how to update a dataset, create a new tileset, and d
Copy file name to clipboardExpand all lines: articles/azure-maps/drawing-error-visualizer.md
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,11 +21,14 @@ The *Drawing Error Visualizer* is a stand-alone web application that displays [D
21
21
* A [subscription key]
22
22
* A [Creator resource]
23
23
24
-
This tutorial uses the [Postman] application, but you may choose a different API development environment.
24
+
This tutorial uses the [Postman] application, but you can choose a different API development environment.
25
25
26
26
## Download
27
27
28
-
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].
28
+
1. Follow the steps outlined in the [How to create data registry] article to upload the drawing package into your Azure storage account then register it in your Azure Maps account.
29
+
30
+
> [!IMPORTANT]
31
+
> Make sure to make a note of the unique identifier (`udid`) value, you will need it. The `udid` is is how you reference the drawing package you uploaded into your Azure storage account from your source code and HTTP requests.
29
32
30
33
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].
31
34
@@ -60,7 +63,7 @@ Unzip the _VisualizationTool.zip_ folder. It contains the following items:
60
63
* _static_ folder: source code
61
64
* _index.html_ file: the web application.
62
65
63
-
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.
66
+
Open the _index.html_ file using any of the following browsers, with the respective version number. You can use a different version, if the version offers equally compatible behavior as the listed version.
64
67
65
68
* Microsoft Edge 80
66
69
* Safari 13
@@ -77,7 +80,7 @@ The _ConversionWarningsAndErrors.json_ file has been placed at the root of the
77
80
78
81
:::image type="content" source="./media/drawing-errors-visualizer/loading-data.gif" alt-text="Drawing Error Visualizer App - Drag and drop to load data":::
79
82
80
-
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.
83
+
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 can now navigate to each error to learn more details on how to resolve the error.
Copy file name to clipboardExpand all lines: articles/azure-maps/how-to-dataset-geojson.md
+8-30Lines changed: 8 additions & 30 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ Azure Maps Creator enables users to import their indoor map data in GeoJSON form
21
21
- An [Azure Maps account]
22
22
- A [Subscription key]
23
23
- An Azure Maps [Creator resource]
24
+
- An [Azure storage account]
24
25
- Basic understanding of [Creator for indoor maps]
25
26
- Basic understanding of [Facility Ontology 2.0]
26
27
- Zip package containing all required GeoJSON files. If you don't have GeoJSON files, you can download the [Contoso building sample].
@@ -36,33 +37,10 @@ For more information on the GeoJSON package, see the [Geojson zip package requir
36
37
37
38
### Upload the GeoJSON package
38
39
39
-
Use the [Data Upload API]to upload the Drawing package to Azure Maps Creator account.
40
+
Follow the steps outlined in the [How to create data registry] article to upload the GeoJSON package into your Azure storage account then register it in your Azure Maps account.
40
41
41
-
The Data Upload API is a long running transaction that implements the pattern defined in [Creator Long-Running Operation API V2].
42
-
43
-
To upload the GeoJSON package:
44
-
45
-
1. Execute the following HTTP POST request that uses the [Data Upload API]:
1. Set `Content-Type` in the **Header** to `application/zip`.
52
-
53
-
1. Copy the value of the `Operation-Location` key in the response header. The `Operation-Location` key is also known as the `status URL` and is required to check the status of the upload, which is explained in the next section.
54
-
55
-
### Check the GeoJSON package upload status
56
-
57
-
To check the status of the GeoJSON package and retrieve its unique identifier (`udid`):
58
-
59
-
1. Execute the following HTTP GET request that uses the status URL you copied as the last step in the previous section of this article. The request should look like the following URL:
1. Copy the value of the `Resource-Location` key in the response header, which is the `resource location URL`. The `resource location URL` contains the unique identifier (`udid`) of the GeoJSON package resource.
42
+
> [!IMPORTANT]
43
+
> Make sure to make a note of the unique identifier (`udid`) value, you will need it. The `udid` is is how you reference the GeoJSON package you uploaded into your Azure storage account from your source code and HTTP requests.
66
44
67
45
### Create a dataset
68
46
@@ -73,7 +51,7 @@ A dataset is a collection of map features, such as buildings, levels, and rooms.
73
51
74
52
To create a dataset:
75
53
76
-
1. Enter the following URL to the dataset service. The request should look like the following URL (replace {udid} with the `udid` obtained in [Check the GeoJSON package upload status] section):
54
+
1. Enter the following URL to the dataset service. The request should look like the following URL (replace {udid} with the `udid` obtained in [Upload the GeoJSON package] section):
Copy file name to clipboardExpand all lines: articles/azure-maps/how-to-manage-creator.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,14 +73,12 @@ Creator usage data is incorporated in your Azure Maps usage charts and activity
73
73
74
74
Creator services and services that use data hosted in Creator (for example, Render service), are accessible at a geographical URL. The geographical URL determines the location selected during creation. For example, if Creator is created in a region in the United States geographical location, all calls to the Conversion service must be submitted to `us.atlas.microsoft.com/conversions`. To view mappings of region to geographical location, [see Creator service geographic scope].
75
75
76
-
Also, all data imported into Creator should be uploaded into the same geographical location as the Creator resource. For example, if Creator is provisioned in the United States, all raw data should be uploaded via `us.atlas.microsoft.com/mapData/upload`.
77
-
78
76
## Next steps
79
77
80
78
Introduction to Creator services for indoor mapping:
81
79
82
80
> [!div class="nextstepaction"]
83
-
> [Data upload]
81
+
> [Upload a drawing package]
84
82
85
83
> [!div class="nextstepaction"]
86
84
> [Data conversion]
@@ -111,11 +109,11 @@ Learn how to use the Creator services to render indoor maps in your application:
0 commit comments