Skip to content

Commit 08ecdb0

Browse files
authored
Merge pull request #113285 from stevemunk/end-links-5
end links #5
2 parents 6d4e0ce + 1333492 commit 08ecdb0

File tree

4 files changed

+36
-30
lines changed

4 files changed

+36
-30
lines changed

articles/azure-maps/drawing-conversion-error-codes.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -508,10 +508,10 @@ To fix a **verticalPenetrationError** error, read about how to use a vertical pe
508508
> [Creator for indoor mapping]
509509
510510
[Conversion service]: /rest/api/maps/v2/conversion
511-
[Drawing package requirements]: drawing-requirements.md
511+
[Creator for indoor mapping]: creator-indoor-maps.md
512512
[Drawing files requirements]: drawing-requirements.md#drawing-package-requirements
513-
[The JavaScript Object Notation (JSON) Data Interchange Format]: https://tools.ietf.org/html/rfc7159
514-
[manifest section in the Drawing package requirements]: drawing-requirements.md#manifest-file-requirements
515-
[How to use Azure Maps Drawing error visualizer]: drawing-error-visualizer.md
516513
[Drawing Package Guide]: drawing-package-guide.md
517-
[Creator for indoor mapping]: creator-indoor-maps.md
514+
[Drawing package requirements]: drawing-requirements.md
515+
[How to use Azure Maps Drawing error visualizer]: drawing-error-visualizer.md
516+
[manifest section in the Drawing package requirements]: drawing-requirements.md#manifest-file-requirements
517+
[The JavaScript Object Notation (JSON) Data Interchange Format]: https://tools.ietf.org/html/rfc7159

articles/azure-maps/drawing-tools-events.md

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Let's see some common scenarios that use the drawing tools events.
4444

4545
### Select points in polygon area
4646

47-
This code demonstrates how to monitor an event of a user drawing shapes. For this example, the code monitors shapes of polygons, rectangles, and circles. Then, it determines which data points on the map are within the drawn area. The `drawingcomplete` event is used to trigger the select logic. In the select logic, the code loops through all the data points on the map. It checks if there's an intersection of the point and the area of the drawn shape. This example makes use of the open-source [Turf.js](https://turfjs.org/) library to perform a spatial intersection calculation.
47+
This code demonstrates how to monitor an event of a user drawing shapes. For this example, the code monitors shapes of polygons, rectangles, and circles. Then, it determines which data points on the map are within the drawn area. The `drawingcomplete` event is used to trigger the select logic. In the select logic, the code loops through all the data points on the map. It checks if there's an intersection of the point and the area of the drawn shape. This example makes use of the open-source [Turf.js] library to perform a spatial intersection calculation.
4848

4949
For a complete working sample of how to use the drawing tools to draw polygon areas on the map with points within them that can be selected, see [Select data in drawn polygon area] in the [Azure Maps Samples]. For the source code for this sample, see [Select data in drawn polygon area sample code].
5050

@@ -96,27 +96,32 @@ For a complete working sample of how to use the drawing tools to measure distanc
9696
Learn how to use other features of the drawing tools module:
9797

9898
> [!div class="nextstepaction"]
99-
> [Get shape data](map-get-shape-data.md)
99+
> [Get shape data]
100100
101101
> [!div class="nextstepaction"]
102-
> [Interaction types and keyboard shortcuts](drawing-tools-interactions-keyboard-shortcuts.md)
102+
> [Interaction types and keyboard shortcuts]
103103
104104
Learn more about the services module:
105105

106106
> [!div class="nextstepaction"]
107-
> [Services module](how-to-use-services-module.md)
107+
> [Services module]
108108
109109
Check out more code samples:
110110

111111
> [!div class="nextstepaction"]
112-
> [Code sample page](https://aka.ms/AzureMapsSamples)
112+
> [Code sample page]
113113
114114
[Azure Maps Samples]:https://samples.azuremaps.com
115-
[Drawing tools events]: https://samples.azuremaps.com/drawing-tools-module/drawing-tools-events
115+
[Code sample page]: https://aka.ms/AzureMapsSamples
116+
[Create a measuring tool sample code]: https://github.com/Azure-Samples/AzureMapsCodeSamples/blob/main/Samples/Drawing%20Tools%20Module/Create%20a%20measuring%20tool/Create%20a%20measuring%20tool.html
117+
[Create a measuring tool]: https://samples.azuremaps.com/drawing-tools-module/create-a-measuring-tool
118+
[Draw and search polygon area sample code]: https://github.com/Azure-Samples/AzureMapsCodeSamples/blob/main/Samples/Drawing%20Tools%20Module/Draw%20and%20search%20polygon%20area/Draw%20and%20search%20polygon%20area.html
119+
[Draw and search polygon area]: https://samples.azuremaps.com/drawing-tools-module/draw-and-search-polygon-area
116120
[Drawing tools events sample code]: https://github.com/Azure-Samples/AzureMapsCodeSamples/blob/main/Samples/Drawing%20Tools%20Module/Drawing%20tools%20events/Drawing%20tools%20events.html
117-
[Select data in drawn polygon area]: https://samples.azuremaps.com/drawing-tools-module/select-data-in-drawn-polygon-area
121+
[Drawing tools events]: https://samples.azuremaps.com/drawing-tools-module/drawing-tools-events
122+
[Get shape data]: map-get-shape-data.md
123+
[Interaction types and keyboard shortcuts]: drawing-tools-interactions-keyboard-shortcuts.md
118124
[Select data in drawn polygon area sample code]: https://github.com/Azure-Samples/AzureMapsCodeSamples/blob/main/Samples/Drawing%20Tools%20Module/Select%20data%20in%20drawn%20polygon%20area/Select%20data%20in%20drawn%20polygon%20area.html
119-
[Draw and search polygon area]: https://samples.azuremaps.com/drawing-tools-module/draw-and-search-polygon-area
120-
[Draw and search polygon area sample code]: https://github.com/Azure-Samples/AzureMapsCodeSamples/blob/main/Samples/Drawing%20Tools%20Module/Draw%20and%20search%20polygon%20area/Draw%20and%20search%20polygon%20area.html
121-
[Create a measuring tool]: https://samples.azuremaps.com/drawing-tools-module/create-a-measuring-tool
122-
[Create a measuring tool sample code]: https://github.com/Azure-Samples/AzureMapsCodeSamples/blob/main/Samples/Drawing%20Tools%20Module/Create%20a%20measuring%20tool/Create%20a%20measuring%20tool.html
125+
[Select data in drawn polygon area]: https://samples.azuremaps.com/drawing-tools-module/select-data-in-drawn-polygon-area
126+
[Services module]: how-to-use-services-module.md
127+
[Turf.js]: https://turfjs.org

articles/azure-maps/geocoding-coverage.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,8 @@ The ability to geocode in a country/region is dependent upon the road data cover
293293

294294
Learn more about Azure Maps geocoding:
295295
> [!div class="nextstepaction"]
296-
> [Azure Maps Search service](/rest/api/maps/search)
296+
> [Azure Maps Search service]
297297
298298
[Search service]: /rest/api/maps/search
299-
[Get Search Address API]: /rest/api/maps/search/getsearchaddress
299+
[Azure Maps Search service]: /rest/api/maps/search
300+
[Get Search Address]: /rest/api/maps/search/get-search-address

articles/azure-maps/glossary.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -402,28 +402,28 @@ The following list describes common words used with the Azure Maps services.
402402

403403
<a name="zip-code"></a> **Zip code**: See [Postal code].
404404

405-
<a name="Zoom level"></a> **Zoom level**: Specifies the level of detail and how much of the map is visible. When zoomed all the way to level 0, the full world map is often visible. But, the map shows limited details such as country/region names, borders, and ocean names. When zoomed in closer to level 17, the map displays an area of a few city blocks with detailed road information. In Azure Maps, the highest zoom level is 22. For more information, see [Zoom levels and tile grid].
405+
<a name="Zoom level"></a> **Zoom level**: Specifies the level of detail and how much of the map is visible. When zoomed all the way to level 0, the full world map is often visible. But, the map shows limited details such as country/region names, borders, and ocean names. When zoomed in closer to level 17, the map displays an area of a few city blocks with detailed road information. In Azure Maps, the highest zoom level is 22. For more information, see the [Zoom levels and tile grid] documentation.
406406

407-
[Satellite imagery]: #satellite-imagery
408-
[Shared key authentication]: #shared-key-authentication
407+
[Altitude]: #altitude
409408
[Azure Maps and Azure AD]: azure-maps-authentication.md
410-
[Manage authentication in Azure Maps]: how-to-manage-authentication.md
409+
[Bearing]: #heading
411410
[Bounding box]: #bounding-box
412-
[Parcel]: #parcel
413411
[consumption model documentation]: consumption-model.md
412+
[EPSG:3857]: https://epsg.io/3857
414413
[Extended geojson]: extend-geojson.md
415-
[Bearing]: #bearing
416-
[Reachable Range]: #reachable-range
417-
[Zoom levels and tile grid]: zoom-levels-and-tile-grid.md
418-
[Postal code]: #postal-code
419414
[Isochrone]: #isochrone
420415
[Isodistance]: #isodistance
421-
[Transformation]: #transformation
416+
[Manage authentication in Azure Maps]: how-to-manage-authentication.md
417+
[Parcel]: #parcel
418+
[Postal code]: #postal-code
422419
[Queries Per Second (QPS)]: #queries-per-second-qps
423-
[EPSG:3857]: https://epsg.io/3857
420+
[Reachable Range]: #reachable-range
421+
[Satellite imagery]: #satellite-imagery
422+
[Shared key authentication]: #shared-key-authentication
424423
[Spatial Data (SQL Server)]: /sql/relational-databases/spatial/spatial-data-sql-server
425424
[Tile layer]: #tile-layer
425+
[Transformation]: #transformation
426426
[Traveling Salesmen Problem]: #traveling-salesmen-problem-tsp
427427
[Vehicle Routing Problem]: #vehicle-routing-problem-vrp
428-
[Altitude]: #altitude
429428
[Web Mercator]: #web-mercator
429+
[Zoom levels and tile grid]: zoom-levels-and-tile-grid.md

0 commit comments

Comments
 (0)