Skip to content

Commit d618f9f

Browse files
committed
Updated link text to rest api.
1 parent 88d2374 commit d618f9f

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

articles/azure-maps/migrate-from-google-maps-web-app.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Also:
3131
> * Best practices to improve performance and user experience.
3232
> * Tips on how to make your application using more advanced features available in Azure Maps.
3333
34-
If migrating an existing web application, check to see if it's using an open-source map control library. Examples of open-source map control library are: Cesium, Leaflet, and OpenLayers. You can still migrate your application, even if it uses an open-source map control library, and you don't want to use the Azure Maps Web SDK. If so, use the [Get Map Tile] API. The following points detail on how to use Azure Maps in some commonly used open-source map control libraries.
34+
If migrating an existing web application, check to see if it's using an open-source map control library. Examples of open-source map control library are: Cesium, Leaflet, and OpenLayers. You can still migrate your application, even if it uses an open-source map control library, and you don't want to use the Azure Maps Web SDK. In such case, connect your application to the Azure Maps [Render] services ([road tiles] | [satellite tiles]). The following points detail on how to use Azure Maps in some commonly used open-source map control libraries.
3535

3636
* Cesium - A 3D map control for the web. [Cesium documentation].
3737
* Leaflet – Lightweight 2D map control for the web. [Leaflet code sample] \| [Leaflet documentation].
@@ -52,7 +52,7 @@ If you don't have an Azure subscription, create a [free account] before you begi
5252
* A [subscription key]
5353

5454
> [!NOTE]
55-
> For more information on authentication in Azure Maps, see [manage authentication in Azure Maps].
55+
> For more information on authentication in Azure Maps, see [Manage authentication in Azure Maps].
5656
5757
## Key features support
5858

@@ -81,7 +81,7 @@ The following are some key differences between the Google Maps and Azure Maps We
8181
* You first need to create an instance of the Map class in Azure Maps. Wait for the maps `ready` or `load` event to fire before programmatically interacting with the map. This order ensures that all the map resources have been loaded and are ready to be accessed.
8282
* Both platforms use a similar tiling system for the base maps. The tiles in Google Maps are 256 pixels in dimension; however, the tiles in Azure Maps are 512 pixels in dimension. To get the same map view in Azure Maps as Google Maps, subtract Google Maps zoom level by the number one in Azure Maps.
8383
* Coordinates in Google Maps are referred to as `latitude,longitude`, while Azure Maps uses `longitude,latitude`. The Azure Maps format is aligned with the standard `[x, y]`, which is followed by most GIS platforms.
84-
* Shapes in the Azure Maps Web SDK are based on the GeoJSON schema. Helper classes are exposed through the [*atlas.data* namespace]. There's also the [*atlas.Shape*] class. Use this class to wrap GeoJSON objects, to make it easy to update and maintain the data bindable way.
84+
* Shapes in the Azure Maps Web SDK are based on the GeoJSON schema. Helper classes are exposed through the [atlas.data] namespace. There's also the [atlas.Shape] class. Use this class to wrap GeoJSON objects, to make it easy to update and maintain the data bindable way.
8585
* Coordinates in Azure Maps are defined as Position objects. A coordinate is specified as a number array in the format `[longitude,latitude]`. Or, it's specified using new atlas.data.Position(longitude, latitude).
8686
> [!TIP]
8787
> The Position class has a static helper method for importing coordinates that are in "latitude, longitude" format. The [atlas.data.Position.fromLatLng] method can often be replaced with the `new google.maps.LatLng` method in Google Maps code.
@@ -1735,8 +1735,8 @@ Learn more about migrating to Azure Maps:
17351735
> [!div class="nextstepaction"]
17361736
> [Migrate a web service]
17371737
1738-
[*atlas.data* namespace]: /javascript/api/azure-maps-control/atlas.data
1739-
[*atlas.Shape*]: /javascript/api/azure-maps-control/atlas.shape
1738+
[atlas.data]: /javascript/api/azure-maps-control/atlas.data
1739+
[atlas.Shape]: /javascript/api/azure-maps-control/atlas.shape
17401740
[`atlas.layer.ImageLayer.getCoordinatesFromEdges`]: /javascript/api/azure-maps-control/atlas.layer.imagelayer#getcoordinatesfromedges-number--number--number--number--number-
17411741
[Add a Bubble layer]: map-add-bubble-layer.md
17421742
[Add a circle to the map]: map-add-shape.md#add-a-circle-to-the-map
@@ -1830,7 +1830,7 @@ Learn more about migrating to Azure Maps:
18301830
[Load a map]: #load-a-map
18311831
[Localization support in Azure Maps]: supported-languages.md
18321832
[Localizing the map]: #localizing-the-map
1833-
[manage authentication in Azure Maps]: how-to-manage-authentication.md
1833+
[Manage authentication in Azure Maps]: how-to-manage-authentication.md
18341834
[Marker clustering]: #marker-clustering
18351835
[Migrate a web service]: migrate-from-google-maps-web-services.md
18361836
[ng-azure-maps]: https://github.com/arnaudleclerc/ng-azure-maps
@@ -1843,8 +1843,10 @@ Learn more about migrating to Azure Maps:
18431843
[Popup options]: /javascript/api/azure-maps-control/atlas.popupoptions
18441844
[Popup with Media Content]: https://samples.azuremaps.com/?sample=popup-with-media-content
18451845
[Popups on Shapes]: https://samples.azuremaps.com/?sample=popups-on-shapes
1846+
[Render]:  /rest/api/maps/render-v2
18461847
[Reusing Popup with Multiple Pins]: https://samples.azuremaps.com/?sample=reusing-popup-with-multiple-pins
1847-
[Get Map Tile]: /rest/api/maps/render-v2/get-map-tile
1848+
[road tiles]: /rest/api/maps/render-v2/get-map-tile
1849+
[satellite tiles]: /rest/api/maps/render-v2/get-map-static-image
18481850
[Search Autosuggest with JQuery UI]: https://samples.azuremaps.com/?sample=search-autosuggest-and-jquery-ui
18491851
[Search for points of interest]: map-search-location.md
18501852
[Setting the map view]: #setting-the-map-view

articles/azure-maps/migrate-from-google-maps-web-services.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ If you don't have an Azure subscription, create a [free account] before you begi
6666
* A [subscription key]
6767

6868
> [!NOTE]
69-
> For more information on authentication in Azure Maps, see [manage authentication in Azure Maps].
69+
> For more information on authentication in Azure Maps, see [Manage authentication in Azure Maps].
7070
7171
## Geocoding addresses
7272

@@ -520,7 +520,7 @@ Learn more about Azure Maps REST services:
520520
[Get Timezone Windows To IANA]: /rest/api/maps/timezone/get-timezone-windows-to-iana
521521
[GitHub project]: https://github.com/perfahlen/AzureMapsRestServices
522522
[Localization support in Azure Maps]: supported-languages.md
523-
[manage authentication in Azure Maps]: how-to-manage-authentication.md
523+
[Manage authentication in Azure Maps]: how-to-manage-authentication.md
524524
[npm package]: https://www.npmjs.com/package/azure-maps-rest
525525
[NuGet package]: https://www.nuget.org/packages/AzureMapsRestToolkit
526526
[Post Route Directions Batch]: /rest/api/maps/route/post-route-directions-batch

0 commit comments

Comments
 (0)