Skip to content

Commit 27c3fe5

Browse files
authored
Merge pull request #107122 from stevemunk/grammar-all-of
Minor grammatical changes and updates to author and ms.author
2 parents a443a33 + c6ffe0e commit 27c3fe5

16 files changed

+32
-32
lines changed

articles/azure-maps/add-symbol-layer-ios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ map.images.add(.azm_markerRed, withID: "marker-red")
175175
let layer = SymbolLayer(source: source, options: [.iconImage("marker-red")])
176176
```
177177

178-
The code below lists all of the built-in icon images available as static variables of `UIImage` class.
178+
The code below lists the built-in icon images available as static variables of `UIImage` class.
179179

180180
```swift
181181
UIImage.azm_markerDefault // Dark blue

articles/azure-maps/android-map-events.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Handle map events in Android maps | Microsoft Azure Maps
33
description: Learn which events are fired when users interact with maps. View a list of all supported map events. See how to use the Azure Maps Android SDK to handle events.
4-
author: eriklindeman
5-
ms.author: eriklind
4+
author: sinnypan
5+
ms.author: sipa
66
ms.date: 2/26/2021
77
ms.topic: conceptual
88
ms.service: azure-maps
@@ -16,7 +16,7 @@ This article shows you how to use the maps events manager.
1616

1717
## Interact with the map
1818

19-
The map manages all events through its `events` property. The following table lists all of the supported map events.
19+
The map manages all events through its `events` property. The following table lists the supported map events.
2020

2121
| Event | Event handler format | Description |
2222
|------------------------|----------------------|-------------|

articles/azure-maps/choose-map-style.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Change the style of the Azure Maps Web Map Control
33
description: "Learn how to change a map's style and options. See how to add a style picker control to a map in Azure Maps so that users can switch between different styles."
4-
author: eriklindeman
5-
ms.author: eriklind
4+
author: sinnypan
5+
ms.author: sipa
66
ms.date: 04/26/2020
77
ms.topic: conceptual
88
ms.service: azure-maps
@@ -15,7 +15,7 @@ The map control supports several different map [style options](/javascript/api/a
1515

1616
## Set map style options
1717

18-
Style options can be set during web control initialization. Or, you can update style options by calling the map control's `setStyle` function. To see all of the available style options, see [style options](/javascript/api/azure-maps-control/atlas.styleoptions).
18+
Style options can be set during web control initialization. Or, you can update style options by calling the map control's `setStyle` function. To see all available style options, see [style options](/javascript/api/azure-maps-control/atlas.styleoptions).
1919

2020
```javascript
2121
//Set the style options when creating the map.

articles/azure-maps/choose-pricing-tier.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ See the **pricing tier targeted customers** table below for a better understandi
2121
|---------------|:---:| ------------------|
2222
|**Gen 1**|S0| The S0 pricing tier works for applications in all stages of production: from proof-of-concept development and early stage testing to application production and deployment. However, this tier is designed for small-scale development, or customers with low concurrent users, or both. S0 has a restriction of 50 QPS for all services combined.
2323
| |S1| The S1 pricing tier is for customers with large-scale enterprise applications, mission-critical applications, or high volumes of concurrent users. It's also for those customers who require advanced geospatial services.
24-
| **Gen 2** | Maps/Location Insights | Gen 2 pricing is for new and current Azure Maps customers. Gen 2 comes with a free monthly tier of transactions to be used to test and build on Azure maps. Maps and Location Insights SKU’s contain all of Azure Maps capabilities. It allows you to achieve cost savings as Azure Maps transactions increases. Additionally, it has higher QPS limits than Gen 1. The Gen 2 pricing tier is required when using [Creator for indoor maps](creator-indoor-maps.md).
24+
| **Gen 2** | Maps/Location Insights | Gen 2 pricing is for new and current Azure Maps customers. Gen 2 comes with a free monthly tier of transactions to be used to test and build on Azure maps. Maps and Location Insights SKU’s contain all Azure Maps capabilities. It allows you to achieve cost savings as Azure Maps transactions increases. Additionally, it has higher QPS limits than Gen 1. The Gen 2 pricing tier is required when using [Creator for indoor maps](creator-indoor-maps.md).
2525
| | |
2626

2727
For more information on QPS limits, please refer to [Azure Maps QPS rate limits](azure-maps-qps-rate-limits.md).

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Drawing tool events | Microsoft Azure Maps
33
description: In this article you'll learn, how to add a drawing toolbar to a map using Microsoft Azure Maps Web SDK
4-
author: eriklindeman
5-
ms.author: eriklind
4+
author: brendansco
5+
ms.author: Brendanc
66
ms.date: 12/05/2019
77
ms.topic: conceptual
88
ms.service: azure-maps
@@ -11,7 +11,7 @@ services: azure-maps
1111

1212
# Drawing tool events
1313

14-
When using drawing tools on a map, it's useful to react to certain events as the user draws on the map. This table lists all of the events supported by the `DrawingManager` class.
14+
When using drawing tools on a map, it's useful to react to certain events as the user draws on the map. This table lists all events supported by the `DrawingManager` class.
1515

1616
| Event | Description |
1717
|-------|-------------|

articles/azure-maps/how-to-add-symbol-to-android-map.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Add a symbol layer to Android maps | Microsoft Azure Maps
33
description: Learn how to add a marker to a map. See an example that uses the Azure Maps Android SDK to add a symbol layer that contains point-based data from a data source.
4-
author: eriklindeman
5-
ms.author: eriklind
4+
author: sinnypan
5+
ms.author: sipa
66
ms.date: 2/26/2021
77
ms.topic: conceptual
88
ms.service: azure-maps
@@ -242,7 +242,7 @@ val layer = SymbolLayer(source,
242242

243243
::: zone-end
244244

245-
The table below lists all of the built-in icon image names available. All of these markers pull its colors from color resources that you can override. In addition to overriding the main fill color of this marker. However, overriding the color of one of these markers would apply to all layers that use that icon image.
245+
The table below lists all available built-in icon image names. All of these markers pull its colors from color resources that you can override. In addition to overriding the main fill color of this marker. However, overriding the color of one of these markers would apply to all layers that use that icon image.
246246

247247
| Icon image name | Color resource name |
248248
|-----------------|---------------------|

articles/azure-maps/how-to-create-custom-styles.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: Create custom styles for indoor maps
33
titleSuffix: Azure Maps Creator
44
description: Learn how to use Maputnik with Azure Maps Creator to create custom styles for your indoor maps.
5-
author: eriklindeman
6-
ms.author: eriklind
5+
author: brendansco
6+
ms.author: Brendanc
77
ms.date: 9/23/2022
88
ms.topic: how-to
99
ms.service: azure-maps
@@ -93,7 +93,7 @@ The base map drop-down list on the visual editor toolbar presents a list of base
9393
9494
#### Save custom styles
9595
96-
Once you have made all of the desired changes to your styles, save the changes to your Creator resource. You can overwrite your style with the changes or create a new style.
96+
Once you have made the desired changes to your styles, save the changes to your Creator resource. You can overwrite your style with the changes or create a new style.
9797
9898
To save your changes, select the **Save** button on the toolbar.
9999

articles/azure-maps/how-to-create-data-registries.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: Create Data Registry (preview)
33
titleSuffix: Azure Maps
44
description: Learn how to create Data Registry.
5-
author: eriklindeman
6-
ms.author: eriklind
5+
author: faterceros
6+
ms.author: aterceros
77
ms.date: 2/14/2023
88
ms.topic: how-to
99
ms.service: azure-maps
@@ -29,7 +29,7 @@ The [data registry] service enables you to register data content in an Azure Sto
2929
3030
## Prepare to register data in Azure Maps
3131

32-
Before you can register data in Azure Maps, you need to create an environment containing all of the required components. You need a storage account with one or more containers that hold the files you wish to register and managed identities for authentication. This section explains how to prepare your Azure environment to register data in Azure Maps.
32+
Before you can register data in Azure Maps, you need to create an environment containing all required components. You need a storage account with one or more containers that hold the files you wish to register and managed identities for authentication. This section explains how to prepare your Azure environment to register data in Azure Maps.
3333

3434
### Create managed identities
3535

articles/azure-maps/how-to-dataset-geojson.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: How to create a dataset using a GeoJson package
33
description: Learn how to create a dataset using a GeoJson package.
4-
author: eriklindeman
5-
ms.author: eriklind
4+
author: brendansco
5+
ms.author: Brendanc
66
ms.date: 11/01/2021
77
ms.topic: how-to
88
ms.service: azure-maps
@@ -139,7 +139,7 @@ Feature IDs can only contain alpha-numeric (a-z, A-Z, 0-9), hyphen (-), dot (.)
139139
- The top level element is [facility], which defines each building in the file *facility.geojson*.
140140
- Each facility has one or more levels, which are defined in the file *levels.goejson*.
141141
- Each level must be inside the facility.
142-
- Each [level] contains [units], [structures], [verticalPenetrations] and [openings]. All of the items defined in the level must be fully contained within the Level geometry.
142+
- Each [level] contains [units], [structures], [verticalPenetrations] and [openings]. All items defined in the level must be fully contained within the Level geometry.
143143
- `unit` can consist of an array of items such as hallways, offices and courtyards, which are defined by [area], [line] or [point] elements. Units are defined in the file *unit.goejson*.
144144
- All `unit` elements must be fully contained within their level and intersect with their children.
145145
- `structure` defines physical, non-overlapping areas that can't be navigated through, such as a wall. Structures are defined in the file *structure.goejson*.

articles/azure-maps/how-to-manage-authentication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ To rotate your Azure Maps subscription keys in the Azure portal:
156156
6. Regenerate the secondary key in the same manner.
157157

158158
> [!WARNING]
159-
> We recommend using only one of the keys in all of your applications at the same time. If you use Key 1 in some places and Key 2 in others, you won't be able to rotate your keys without some applications losing access.
159+
> We recommend using the same key in all your applications. If you use the primary key in some places and the secondary key in others, you won't be able to rotate your keys without some applications losing access.
160160
161161
## Next steps
162162

0 commit comments

Comments
 (0)