Skip to content

Commit 42702bf

Browse files
authored
Merge pull request #126442 from stevemunk/rest-api-service-name-cap
Rest API service name capitalization
2 parents 7fa4f48 + 9f702ad commit 42702bf

13 files changed

+29
-29
lines changed

articles/azure-maps/azure-maps-authentication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ After the application receives an access token, the SDK and/or application sends
7171
> [!NOTE]
7272
> `x-ms-client-id` is the Azure Maps account-based GUID that appears on the Azure Maps authentication page.
7373
74-
Here's an example of an Azure Maps route request that uses a Microsoft Entra ID OAuth Bearer token:
74+
Here's an example of an Azure Maps Route request that uses a Microsoft Entra ID OAuth Bearer token:
7575

7676
```http
7777
GET /route/directions/json?api-version=1.0&query=52.50931,13.42936:52.50274,13.43872

articles/azure-maps/create-data-source-web-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Azure Maps adheres to the [Mapbox Vector Tile Specification], an open standard.
8282
* Azure Maps Creator also allows custom vector tiles to be created and accessed through the [Render - Get Map Tile] API
8383

8484
> [!TIP]
85-
> When using vector or raster image tiles from the Azure Maps render service with the web SDK, you can replace `atlas.microsoft.com` with the placeholder `{azMapsDomain}`. This placeholder will be replaced with the same domain used by the map and will automatically append the same authentication details as well. This greatly simplifies authentication with the render service when using Microsoft Entra authentication.
85+
> When using vector or raster image tiles from the Azure Maps Render service with the web SDK, you can replace `atlas.microsoft.com` with the placeholder `{azMapsDomain}`. This placeholder will be replaced with the same domain used by the map and will automatically append the same authentication details as well. This greatly simplifies authentication with the render service when using Microsoft Entra authentication.
8686
8787
To display data from a vector tile source on the map, connect the source to one of the data rendering layers. All layers that use a vector source must specify a `sourceLayer` value in the options. The following code loads the Azure Maps traffic flow vector tile service as a vector tile source, then displays it on a map using a line layer. This vector tile source has a single set of data in the source layer called "Traffic flow". The line data in this data set has a property called `traffic_level` that is used in this code to select the color and scale the size of lines.
8888

articles/azure-maps/how-to-dev-guide-js-sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ mapsDemo
7070

7171
## Create and authenticate a MapsSearchClient
7272

73-
You need a `credential` object for authentication when creating the `MapsSearchClient` object used to access the Azure Maps search APIs. You can use either a Microsoft Entra credential or an Azure subscription key to authenticate. For more information on authentication, see [Authentication with Azure Maps].
73+
You need a `credential` object for authentication when creating the `MapsSearchClient` object used to access the Azure Maps Search APIs. You can use either a Microsoft Entra credential or an Azure subscription key to authenticate. For more information on authentication, see [Authentication with Azure Maps].
7474

7575
> [!TIP]
76-
> The`MapsSearchClient` is the primary interface for developers using the Azure Maps search library. See [Azure Maps Search client library][JS-SDK] to learn more about the search methods available.
76+
> The`MapsSearchClient` is the primary interface for developers using the Azure Maps Search library. See [Azure Maps Search client library][JS-SDK] to learn more about the search methods available.
7777
7878
<a name='using-an-azure-ad-credential'></a>
7979

articles/azure-maps/map-search-location.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ const onload = () => {
139139
const resultLayer = new atlas.layer.SymbolLayer(datasource);
140140
map.layers.add(resultLayer);
141141

142-
// Send a request to Azure Maps search API
142+
// Send a request to Azure Maps Search API
143143
let url = "https://atlas.microsoft.com/search/fuzzy/json?";
144144
url += "&api-version=1";
145145
url += "&query=gasoline%20station";

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1230,11 +1230,11 @@ map.setTraffic({
12301230
});
12311231
```
12321232

1233-
![Azure Maps traffic](media/migrate-bing-maps-web-app/azure-maps-traffic.jpg)
1233+
![Azure Maps Traffic](media/migrate-bing-maps-web-app/azure-maps-traffic.jpg)
12341234

12351235
If you select one of the traffic icons in Azure Maps, more information displays in a popup.
12361236

1237-
![Azure Maps traffic popup](media/migrate-bing-maps-web-app/azure-maps-traffic-popup.jpg)
1237+
![Azure Maps Traffic popup](media/migrate-bing-maps-web-app/azure-maps-traffic-popup.jpg)
12381238

12391239
**More resources**
12401240

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The table shows the Azure Maps service APIs, which have a similar functionality
4747
The following service APIs aren't currently available in Azure Maps:
4848

4949
* Geolocation - Azure Maps does have a service called Geolocation, but it provides IP Address to location information, but doesn't currently support cell tower or WiFi triangulation.
50-
* Places details and photos - Phone numbers and website URL are available in the Azure Maps search API.
50+
* Places details and photos - Phone numbers and website URL are available in the Azure Maps Search API.
5151
* Map URLs
5252
* Nearest Roads - Achievable using the Web SDK as demonstrated in the [Basic snap to road logic] sample, but isn't currently available as a service.
5353
* Static street view
@@ -216,7 +216,7 @@ The table cross-references the Google Maps API parameters with the comparable AP
216216
| `waypoints` | `query` |
217217

218218
> [!TIP]
219-
> By default, the Azure Maps route API only returns a summary. It returns the distance and times and the coordinates for the route path. Use the `instructionsType` parameter to retrieve turn-by-turn instructions. And, use the `routeRepresentation` parameter to filter out the summary and route path.
219+
> By default, the Azure Maps Route API only returns a summary. It returns the distance and times and the coordinates for the route path. Use the `instructionsType` parameter to retrieve turn-by-turn instructions. And, use the `routeRepresentation` parameter to filter out the summary and route path.
220220
221221
Azure Maps routing API has other features that aren't available in Google Maps. When migrating your app, consider using these features:
222222

@@ -265,7 +265,7 @@ The table cross-references the Google Maps API parameters with the comparable AP
265265
266266
For more information, see [Render custom data on a raster map].
267267

268-
In addition to being able to generate a static map image, the Azure Maps render service enables direct access of map tiles in raster (PNG) and vector format:
268+
In addition to being able to generate a static map image, the Azure Maps Render service enables direct access of map tiles in raster (PNG) and vector format:
269269

270270
* [Get Map Static Image]: Retrieve raster (PNG) and vector tiles for the base maps (roads, boundaries, background).
271271
* [Get Map Tile]: Retrieve aerial and satellite imagery tiles.

articles/azure-maps/migrate-sds-data-source-management.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ To load and present your data on a map, you need to build a service layer (an AP
4242
### More information
4343

4444
- [Create a data source for a map in Microsoft Azure Maps]
45-
- [How to use the Azure Maps spatial IO module]
45+
- [How to use the Azure Maps Spatial IO module]
4646
- [Read and write spatial data with Microsoft Azure Maps]
4747

4848
## Locator starter project
@@ -93,7 +93,7 @@ The Azure Maps store locator starter project gives you the following general arc
9393
[Data Source Management]: /bingmaps/spatial-data-services/data-source-management-api
9494
[Geocode Dataflow]: /bingmaps/spatial-data-services/geocode-dataflow-api
9595
[Geodata]: /bingmaps/spatial-data-services/geodata-api
96-
[How to use the Azure Maps spatial IO module]: how-to-use-spatial-io-module.md
96+
[How to use the Azure Maps Spatial IO module]: how-to-use-spatial-io-module.md
9797
[Microsoft Entra authentication]: azure-maps-authentication.md#microsoft-entra-authentication
9898
[Microsoft Q&A Forum]: /answers/tags/209/azure-maps
9999
[Migrating Bing Maps SDS Geocode Dataflow API]: migrate-geocode-dataflow.md

articles/azure-maps/quick-demo-map-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ If you don't plan to continue to the tutorials, take these steps to clean up the
9090

9191
For more code examples and an interactive coding experience, see these articles:
9292

93-
* [Find an address with Azure Maps search service]
93+
* [Find an address with Azure Maps Search service]
9494
* [Use the Azure Maps Map Control]
9595

9696
## Next steps
@@ -101,7 +101,7 @@ In this quickstart, you created an Azure Maps account and a demo application. Ta
101101
> [Search nearby points of interest with Azure Maps]
102102
103103
[Azure portal]: https://portal.azure.com
104-
[Find an address with Azure Maps search service]: how-to-search-for-address.md
104+
[Find an address with Azure Maps Search service]: how-to-search-for-address.md
105105
[free account]: https://azure.microsoft.com/free/?WT.mc_id=A261C142F
106106
[Interactive Search Quickstart.html]: https://github.com/Azure-Samples/AzureMapsCodeSamples/blob/master/Samples/Tutorials/Interactive%20Search/Interactive%20Search%20Quickstart.html
107107
[Microsoft Entra ID]: /entra/fundamentals/whatis

articles/azure-maps/render-coverage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Render coverage
2+
title: Azure Maps Render service coverage
33
titleSuffix: Microsoft Azure Maps
44
description: Render coverage tables list the countries/regions that support Azure Maps road tiles.
55
author: faterceros
@@ -10,7 +10,7 @@ ms.service: azure-maps
1010
ms.subservice: render
1111
---
1212

13-
# Azure Maps render coverage
13+
# Azure Maps Render service coverage
1414

1515
The render coverage tables below list the countries/regions that support Azure Maps road tiles. Both raster and vector tiles are supported. At the lowest resolution, the entire world fits in a single tile. At the highest resolution, a single tile represents 38 square meters. You'll see more details about continents, regions, cities, and individual streets as you zoom in the map. For more information about tiles, see [Zoom levels and tile grid].
1616

articles/azure-maps/routing-coverage.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Routing coverage
2+
title: Azure Maps Route service coverage
33
titleSuffix: Microsoft Azure Maps
44
description: Learn what level of coverage Azure Maps provides in various regions for routing, routing with traffic, and truck routing.
55
author: farazgis
@@ -11,13 +11,13 @@ ms.subservice: routing
1111
zone_pivot_groups: azure-maps-coverage
1212
---
1313

14-
# Azure Maps routing coverage
14+
# Azure Maps Route service coverage
1515

16-
This article provides coverage information for Azure Maps routing. Upon a search query, Azure Maps returns an optimal route from location A to location B. You're provided with accurate travel times, live updates of travel information, and route instructions. You can also add more search parameters such as current traffic, vehicle type, and conditions to avoid. The optimization of the route depends on the region. That's because, Azure Maps has various levels of information and accuracy for different regions. The tables in this article list the regions and what kind of information you can request for them.
16+
This article provides coverage information for the Azure Maps Route service. Upon a search query, Azure Maps returns an optimal route from location A to location B. You're provided with accurate travel times, live updates of travel information, and route instructions. You can also add more search parameters such as current traffic, vehicle type, and conditions to avoid. The optimization of the route depends on the region. That's because, Azure Maps has various levels of information and accuracy for different regions. The tables in this article list the regions and what kind of information you can request for them.
1717

1818
## Routing information supported
1919

20-
The following information is available in the [Azure Maps routing coverage tables]:
20+
The following information is available in the [Azure Maps Route service coverage tables]:
2121

2222
::: zone pivot="service-previous"
2323
<!----------------------------- ROUTING v1 ---------------------------------------------------------------------------->
@@ -75,7 +75,7 @@ For more information about the Route Directions API, see [Azure Maps Route Servi
7575

7676
::: zone-end
7777

78-
## Azure Maps routing coverage tables
78+
## Azure Maps Route service coverage tables
7979

8080
::: zone pivot="service-previous"
8181

@@ -624,7 +624,7 @@ For more coverage tables, see:
624624
- Check out coverage for [Traffic].
625625
- Check out coverage for [Render].
626626

627-
[Azure Maps routing coverage tables]: #azure-maps-routing-coverage-tables
627+
[Azure Maps Route service coverage tables]: #azure-maps-route-service-coverage-tables
628628
[Azure Maps Route Service]: /rest/api/maps/route/
629629
[Geocoding]: geocoding-coverage.md
630630
[Get Route Directions]: /rest/api/maps/route/get-route-directions

0 commit comments

Comments
 (0)