Skip to content

Commit 260a143

Browse files
committed
Capitalize service name.
1 parent 7ab586c commit 260a143

11 files changed

+19
-19
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/tutorial-create-store-locator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ To add the JavaScript:
438438

439439
1. Open *index.js*.
440440

441-
2. Add global options to make settings easier to update. Define the variables for the map, pop up window, data source, icon layer, and HTML marker. Set the HTML marker to indicate the center of a search area. And, define an instance of the Azure Maps search service client.
441+
2. Add global options to make settings easier to update. Define the variables for the map, pop up window, data source, icon layer, and HTML marker. Set the HTML marker to indicate the center of a search area. And, define an instance of the Azure Maps Search service client.
442442

443443
```JavaScript
444444
//The maximum zoom level to cluster data point data on the map.

articles/azure-maps/weather-coverage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.subservice: weather
1010
ms.custom: references_regions
1111
---
1212

13-
# Azure Maps weather services coverage
13+
# Azure Maps Weather services coverage
1414

1515
This article provides coverage information for Azure Maps [Weather services].
1616

@@ -332,11 +332,11 @@ Radar tiles, showing areas of rain, snow, ice and mixed conditions, are returned
332332
> [Weather services in Azure Maps]
333333
334334
> [!div class="nextstepaction"]
335-
> [Azure Maps weather services frequently asked questions (FAQ)]
335+
> [Azure Maps Weather services frequently asked questions (FAQ)]
336336
337337
[active storms]: /rest/api/maps/weather/get-tropical-storm-active
338338
[Actuals]: /rest/api/maps/weather/get-daily-historical-actuals
339-
[Azure Maps weather services frequently asked questions (FAQ)]: weather-services-faq.yml
339+
[Azure Maps Weather services frequently asked questions (FAQ)]: weather-services-faq.yml
340340
[current]: /rest/api/maps/weather/get-current-air-quality
341341
[daily]: /rest/api/maps/weather/get-air-quality-daily-forecasts
342342
[forecasts]: /rest/api/maps/weather/get-tropical-storm-forecast

0 commit comments

Comments
 (0)