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/drawing-requirements.md
+16-12Lines changed: 16 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,9 @@ services: azure-maps
13
13
14
14
# Drawing package requirements
15
15
16
-
You can convert uploaded drawing packages into map data by using the Azure Maps [Conversion service]. This article describes the drawing package requirements for the Conversion API. To view a sample package, you can download the sample [Drawing package](https://github.com/Azure-Samples/am-creator-indoor-data-examples).
16
+
You can convert uploaded drawing packages into map data by using the Azure Maps [Conversion service]. This article describes the drawing package requirements for the Conversion API. To view a sample package, you can download the sample [Drawing package].
17
17
18
-
For a guide on how to prepare your drawing package, see [Conversion Drawing Package Guide](drawing-package-guide.md).
18
+
For a guide on how to prepare your drawing package, see [Conversion Drawing Package Guide].
19
19
20
20
## Prerequisites
21
21
@@ -45,7 +45,7 @@ A drawing package is a .zip archive that contains the following files:
45
45
- DWG files in AutoCAD DWG file format.
46
46
- A _manifest.json_ file that describes the DWG files in the drawing package.
47
47
48
-
The drawing package must be zipped into a single archive file, with the .zip extension. The DWG files can be organized in any way inside the package, but the manifest file must live at the root directory of the zipped package. The next sections detail the requirements for the DWG files, manifest file, and the content of these files. To view a sample package, you can download the [sample drawing package](https://github.com/Azure-Samples/am-creator-indoor-data-examples).
48
+
The drawing package must be zipped into a single archive file, with the .zip extension. The DWG files can be organized in any way inside the package, but the manifest file must live at the root directory of the zipped package. The next sections detail the requirements for the DWG files, manifest file, and the content of these files. To view a sample package, you can download the [sample drawing package].
49
49
50
50
## DWG file conversion process
51
51
@@ -114,7 +114,7 @@ No matter how many entity drawings are in the exterior layer, the [resulting fac
114
114
115
115
If the layer contains multiple overlapping PolyLines, the PolyLines are dissolved into a single Level feature. Instead, if the layer contains multiple non-overlapping PolyLines, the resulting Level feature has a multi-polygonal representation.
116
116
117
-
You can see an example of the Exterior layer as the outline layer in the [sample drawing package](https://github.com/Azure-Samples/am-creator-indoor-data-examples).
117
+
You can see an example of the Exterior layer as the outline layer in the [sample drawing package].
118
118
119
119
### Unit layer
120
120
@@ -129,7 +129,7 @@ The Units layer should adhere to the following requirements:
129
129
130
130
Name a unit by creating a text object in the UnitLabel layer, and then place the object inside the bounds of the unit. For more information, see the [UnitLabel layer](#unitlabel-layer).
131
131
132
-
You can see an example of the Units layer in the [sample drawing package](https://github.com/Azure-Samples/am-creator-indoor-data-examples).
132
+
You can see an example of the Units layer in the [sample drawing package].
133
133
134
134
### Wall layer
135
135
@@ -138,7 +138,7 @@ The DWG file for each level can contain a layer that defines the physical extent
138
138
- Walls must be drawn as Polygon, PolyLine (closed), Circle, or Ellipse (closed).
139
139
- The wall layer or layers should only contain geometry that's interpreted as building structure.
140
140
141
-
You can see an example of the Walls layer in the [sample drawing package](https://github.com/Azure-Samples/am-creator-indoor-data-examples).
141
+
You can see an example of the Walls layer in the [sample drawing package].
142
142
143
143
### Door layer
144
144
@@ -158,7 +158,7 @@ The DWG file for each level can contain a Zone layer that defines the physical e
158
158
159
159
Name a zone by creating a text object in the ZoneLabel layer, and placing the text object inside the bounds of the zone. For more information, see [ZoneLabel layer](#zonelabel-layer).
160
160
161
-
You can see an example of the Zone layer in the [sample drawing package](https://github.com/Azure-Samples/am-creator-indoor-data-examples).
161
+
You can see an example of the Zone layer in the [sample drawing package].
162
162
163
163
### UnitLabel layer
164
164
@@ -168,7 +168,7 @@ The DWG file for each level can contain a UnitLabel layer. The UnitLabel layer a
168
168
- Unit labels must fall entirely inside the bounds of their unit.
169
169
- Units must not contain multiple text entities in the UnitLabel layer.
170
170
171
-
You can see an example of the UnitLabel layer in the [sample drawing package](https://github.com/Azure-Samples/am-creator-indoor-data-examples).
171
+
You can see an example of the UnitLabel layer in the [sample drawing package].
172
172
173
173
### ZoneLabel layer
174
174
@@ -178,7 +178,7 @@ The DWG file for each level can contain a ZoneLabel layer. This layer adds a nam
178
178
- Zones labels must fall inside the bounds of their zone.
179
179
- Zones must not contain multiple text entities in the ZoneLabel layer.
180
180
181
-
You can see an example of the ZoneLabel layer in the [sample drawing package](https://github.com/Azure-Samples/am-creator-indoor-data-examples).
181
+
You can see an example of the ZoneLabel layer in the [sample drawing package].
182
182
183
183
## Manifest file requirements
184
184
@@ -213,7 +213,7 @@ The next sections detail the requirements for each object.
213
213
|`locality`|string | false | Name of a city, town, area, neighborhood, or region.|
214
214
|`adminDivisions`|JSON array of strings | false| An array containing address designations. For example: (Country, State) Use ISO 3166 country codes and ISO 3166-2 state/territory codes. |
215
215
|`postalCode`|string| false | The mail sorting code. |
216
-
|`hoursOfOperation`|string|false| Adheres to the [OSM Opening Hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours/specification) format. |
216
+
|`hoursOfOperation`|string|false| Adheres to the [OSM Opening Hours] format. |
217
217
|`phone`|string| false | Phone number associated with the building. |
218
218
|`website`|string| false | Website associated with the building. |
219
219
|`nonPublic`|bool| false | Flag specifying if the building is open to the public. |
@@ -286,7 +286,7 @@ The `zoneProperties` object contains a JSON array of zone properties.
286
286
287
287
### Sample drawing package manifest
288
288
289
-
Below is the manifest file for the sample drawing package. Go to the [Sample drawing package for Azure Maps Creator](https://github.com/Azure-Samples/am-creator-indoor-data-examples) on GitHub to download the entire package.
289
+
Below is the manifest file for the sample drawing package. Go to the [Sample drawing package] for Azure Maps Creator on GitHub to download the entire package.
290
290
291
291
#### Manifest file
292
292
@@ -425,4 +425,8 @@ Learn more by reading:
425
425
> [!div class="nextstepaction"]
426
426
> [Creator for indoor maps](creator-indoor-maps.md)
Copy file name to clipboardExpand all lines: articles/azure-maps/geofence-geojson.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ The data for geofence or set of geofences is represented by `Feature` Object and
33
33
34
34
* All coordinate values are represented as [longitude, latitude] defined in `WGS84`.
35
35
* For each Feature, which contains `MultiPoint`, `MultiLineString`, `MultiPolygon` , or `GeometryCollection`, the properties are applied to all the elements. for example: All the points in `MultiPoint` will use same radius to form a multiple circle geofence.
36
-
* In point-circle scenario, a circle geometry can be represented using a `Point` geometry object with properties elaborated in [Extending GeoJSON geometries](./extend-geojson.md).
36
+
* In point-circle scenario, a circle geometry can be represented using a `Point` geometry object with properties elaborated in [Extending GeoJSON geometries].
37
37
38
38
Following is a sample request body for a geofence represented as a circle geofence geometry in `GeoJSON` using a center point and a radius. The valid period of the geofence data starts from 2018-10-22, 9AM to 5PM, repeated every day except for the weekend. `expiredTime` indicates this geofence data will be considered expired, if `userTime` in the request is later than `2019-01-01`.
39
39
@@ -67,4 +67,5 @@ Following is a sample request body for a geofence represented as a circle geofen
Copy file name to clipboardExpand all lines: articles/azure-maps/how-to-create-custom-styles.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ Select the **Get map configuration list** button to get a list of every map conf
44
44
:::image type="content" source="./media/creator-indoor-maps/style-editor/select-the-map-configuration.png" alt-text="A screenshot of the open style dialog box in the visual style editor with the Select map configuration drop-down list highlighted.":::
45
45
46
46
> [!NOTE]
47
-
> If the map configuration was created as part of a custom style and has a user provided alias, that alias will appear in the map configuration drop-down list, otherwise the `mapConfigurationId` will appear. The default map configuration ID for any given tileset can be found by using the [tileset get][tileset get] HTTP request and passing in the tileset ID:
47
+
> If the map configuration was created as part of a custom style and has a user provided alias, that alias will appear in the map configuration drop-down list, otherwise the `mapConfigurationId` will appear. The default map configuration ID for any given tileset can be found by using the [tileset get] HTTP request and passing in the tileset ID:
Copy file name to clipboardExpand all lines: articles/azure-maps/how-to-create-data-registries.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -317,7 +317,7 @@ The data returned when running the list request is similar to the data provided
317
317
318
318
## Get content from a data registry
319
319
320
-
Once you've uploaded one or more files to an Azure storage account, created and Azure Maps datastore to link to those files, then registered them using the [register][register or replace] API, you can access the data contained in the files.
320
+
Once you've uploaded one or more files to an Azure storage account, created and Azure Maps datastore to link to those files, then registered them using the [register] API, you can access the data contained in the files.
321
321
322
322
Use the `udid` to get the content of a file registered in an Azure Maps account:
323
323
@@ -363,7 +363,7 @@ When you register a file in Azure Maps using the data registry API, an MD5 hash
363
363
364
364
[data registry]: /rest/api/maps/data-registry
365
365
[list]: /rest/api/maps/data-registry/list
366
-
[Register Or Replace]: /rest/api/maps/data-registry/register-or-replace
Copy file name to clipboardExpand all lines: articles/azure-maps/how-to-creator-wayfinding.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,8 +16,8 @@ The Azure Maps Creator [wayfinding service] allows you to navigate from place to
16
16
17
17
## Prerequisites
18
18
19
-
- Understanding of [Creator concepts](creator-indoor-maps.md).
20
-
- An Azure Maps Creator [dataset] and [tileset]. If you have never used Azure Maps Creator to create an indoor map, you might find the [Use Creator to create indoor maps](tutorial-creator-indoor-maps.md) tutorial helpful.
19
+
- Understanding of [Creator concepts].
20
+
- An Azure Maps Creator [dataset] and [tileset]. If you have never used Azure Maps Creator to create an indoor map, you might find the [Use Creator to create indoor maps] tutorial helpful.
21
21
22
22
>[!IMPORTANT]
23
23
>
@@ -122,6 +122,7 @@ The wayfinding service calculates the path through specific intervening points.
122
122
123
123
<!-- TODO: ## Implement the wayfinding service in your map (Refer to sample app once completed) -->
0 commit comments