Skip to content

Commit 70f5d01

Browse files
authored
Merge pull request #125012 from ArieHein/Spelling-Wave-9
Spelling Fixes - Wave 9
2 parents 2b58044 + da8fc7e commit 70f5d01

15 files changed

+21
-21
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ map.sources.add(source);
5050
The following code shows the different ways GeoJSON data can be added to a `DataSource`.
5151

5252
```javascript
53-
//GeoJsonData in the following code can be a single or array of GeoJSON features or geometries, a GeoJSON feature colleciton, or a single or array of atlas.Shape objects.
53+
//GeoJsonData in the following code can be a single or array of GeoJSON features or geometries, a GeoJSON feature collection, or a single or array of atlas.Shape objects.
5454

5555
//Add geoJSON object to data source.
5656
source.add(geoJsonData);

articles/azure-maps/creator-indoor-maps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ Example layer in the style.json file:
165165

166166
The map configuration is an array of configurations. Each configuration consists of a [basemap] and one or more layers, each layer consisting of a [style] + [tileset] tuple.
167167

168-
The map configuration is used when you [Instantiate the Indoor Manager] of a Map object when developing applications in Azure Maps. It's referenced using the `mapConfigurationId` or `alias`. Map configurations are immutable. When making changes to an existing map configuration, a new map configuration is created, resulting in a different `mapConfingurationId`. Anytime you create a map configuration using an alias already used by an existing map configuration, it points to the new map configuration.
168+
The map configuration is used when you [Instantiate the Indoor Manager] of a Map object when developing applications in Azure Maps. It's referenced using the `mapConfigurationId` or `alias`. Map configurations are immutable. When making changes to an existing map configuration, a new map configuration is created, resulting in a different `mapConfigurationId`. Anytime you create a map configuration using an alias already used by an existing map configuration, it points to the new map configuration.
169169

170170
The following JSON is an example of a default map configuration. See the following table for a description of each element of the file:
171171

articles/azure-maps/elevation-data-services.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def main(req: func.HttpRequest) -> func.HttpResponse:
174174
gxc = min(max(gx * mapSize + 0.5, 0), mapSize - 1);
175175
gyc = min(max(gy * mapSize + 0.5, 0), mapSize - 1);
176176
177-
# Calclate the tile x and y covering the lng / lat
177+
# Calculate the tile x and y covering the lng / lat
178178
tileX = int(gxc / 256)
179179
tileY = int(gyc / 256)
180180

articles/azure-maps/how-to-secure-sas-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ The following steps describe how to create and configure an Azure Maps account w
272272
"defaultValue": "primaryKey",
273273
"allowedValues": [
274274
"primaryKey",
275-
"seconaryKey"
275+
"secondaryKey"
276276
],
277277
"metadata": {
278278
"description": "The specified signing key which will be used to create the SAS token."

articles/azure-maps/how-to-use-image-templates-web-sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ The [Fill polygon with built-in icon template] sample demonstrates how to render
9494
9595
## Use an image template with an HTML marker
9696

97-
An image template can be retrieved using the `altas.getImageTemplate` function and used as the content of an HTML marker. The template can be passed into the `htmlContent` option of the marker, and then customized using the `color`, `secondaryColor`, and `text` options.
97+
An image template can be retrieved using the `atlas.getImageTemplate` function and used as the content of an HTML marker. The template can be passed into the `htmlContent` option of the marker, and then customized using the `color`, `secondaryColor`, and `text` options.
9898

9999
The [HTML Marker with built-in icon template] sample demonstrates this using the `marker-arrow` template with a red primary color, a pink secondary color, and a text value of "00", as shown in the following screenshot. For the source code for this sample, see [HTML Marker with built-in icon template sample code].
100100

@@ -107,7 +107,7 @@ The [HTML Marker with built-in icon template] sample demonstrates this using the
107107
----------------------------------------------------->
108108

109109
> [!TIP]
110-
> Image templates can be used outside of the map too. The getImageTemplate funciton returns an SVG string that has placeholders; `{color}`, `{secondaryColor}`, `{scale}`, `{text}`. Replace these placeholder values to create a valid SVG string. You can then either add the SVG string directly to the HTML DOM or convert it into a data URI and insert it into an image tag. For example:
110+
> Image templates can be used outside of the map too. The getImageTemplate function returns an SVG string that has placeholders; `{color}`, `{secondaryColor}`, `{scale}`, `{text}`. Replace these placeholder values to create a valid SVG string. You can then either add the SVG string directly to the HTML DOM or convert it into a data URI and insert it into an image tag. For example:
111111
>
112112
> ```JavaScript
113113
> //Retrieve an SVG template and replace the placeholder values.

articles/azure-maps/how-to-use-map-control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This article uses the Azure Maps Web SDK, however the Azure Maps services work w
2121
>
2222
> **Azure Maps Web SDK Map Control v1 retirement**
2323
>
24-
> Version 1 of the Web SDK Map Control is now deprecated and will be retired on 9/19/26. To avoid service disruptions, migrate to version 3 of the Web SDK Map Control by 9/19/26. Version 3 is backwards compatible and has several benifits including [WebGL 2 Compatibility], increased performance and support for [3D terrain tiles]. For more information, see [The Azure Maps Web SDK v1 migration guide].
24+
> Version 1 of the Web SDK Map Control is now deprecated and will be retired on 9/19/26. To avoid service disruptions, migrate to version 3 of the Web SDK Map Control by 9/19/26. Version 3 is backwards compatible and has several benefits including [WebGL 2 Compatibility], increased performance and support for [3D terrain tiles]. For more information, see [The Azure Maps Web SDK v1 migration guide].
2525
2626
## Prerequisites
2727

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -965,7 +965,7 @@ GeoJSON data can be directly imported in Azure Maps using the `importDataFromUrl
965965
map.layers.add([
966966
//Create a bubble layer for rendering clustered data points.
967967
new atlas.layer.BubbleLayer(datasource, null, {
968-
//Scale the size of the clustered bubble based on the number of points inthe cluster.
968+
//Scale the size of the clustered bubble based on the number of points in the cluster.
969969
radius: [
970970
'step',
971971
['get', 'point_count'],
@@ -1465,7 +1465,7 @@ In Azure Maps, GeoJSON is the main data format used in the web SDK, more spatial
14651465
14661466
//Check to see if there are any icons in the data set that need to be loaded into the map resources.
14671467
if (r.icons) {
1468-
//For each icon image, create a promise to add it to the map, then run the promises in parrallel.
1468+
//For each icon image, create a promise to add it to the map, then run the promises in parallel.
14691469
var imagePromises = [];
14701470
14711471
//The keys are the names of each icon image.
@@ -1544,7 +1544,7 @@ In Bing Maps the `DrawingTools` module is loaded using the `Microsoft.Maps.loadM
15441544
//Create an instance of the DrawingTools class and bind it to the map.
15451545
var tools = new Microsoft.Maps.DrawingTools(map);
15461546
1547-
//Show the drawing toolbar and enable editting on the map.
1547+
//Show the drawing toolbar and enable editing on the map.
15481548
tools.showDrawingManager(function (manager) {
15491549
//Store a reference to the drawing manager as it will be useful later.
15501550
drawingManager = manager;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1626,7 +1626,7 @@ In Azure Maps, GeoJSON is the main data format used in the web SDK, more spatial
16261626
16271627
//Check to see if there are any icons in the data set that need to be loaded into the map resources.
16281628
if (r.icons) {
1629-
//For each icon image, create a promise to add it to the map, then run the promises in parrallel.
1629+
//For each icon image, create a promise to add it to the map, then run the promises in parallel.
16301630
var imagePromises = [];
16311631
16321632
//The keys are the names of each icon image.
@@ -1730,7 +1730,7 @@ The Azure Maps Web SDK includes a services module, which can be loaded separatel
17301730
| Google Maps | Azure Maps |
17311731
|------------------------|----------------------------|
17321732
| `google.maps.Geocoder` | [atlas.service.SearchUrl] |
1733-
| `google.maps.GeocoderRequest` | [atlas.SearchAddressOptions]<br>[atlas.SearchAddressRevrseOptions]<br>[atlas.SearchAddressReverseCrossStreetOptions]<br>[atlas.SearchAddressStructuredOptions]<br>[atlas.SearchAlongRouteOptions]<br>[atlas.SearchFuzzyOptions]<br>[atlas.SearchInsideGeometryOptions]<br>[atlas.SearchNearbyOptions]<br>[atlas.SearchPOIOptions]<br>[atlas.SearchPOICategoryOptions] |
1733+
| `google.maps.GeocoderRequest` | [atlas.SearchAddressOptions]<br>[atlas.SearchAddressReverseOptions]<br>[atlas.SearchAddressReverseCrossStreetOptions]<br>[atlas.SearchAddressStructuredOptions]<br>[atlas.SearchAlongRouteOptions]<br>[atlas.SearchFuzzyOptions]<br>[atlas.SearchInsideGeometryOptions]<br>[atlas.SearchNearbyOptions]<br>[atlas.SearchPOIOptions]<br>[atlas.SearchPOICategoryOptions] |
17341734
| `google.maps.DirectionsService` | [atlas.service.RouteUrl] |
17351735
| `google.maps.DirectionsRequest` | [atlas.CalculateRouteDirectionsOptions] |
17361736
| `google.maps.places.PlacesService` | [f] |

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -423,9 +423,9 @@ This table cross-references the Google Maps API parameters with the comparable A
423423

424424
| Google Maps API parameter | Comparable Azure Maps API parameter |
425425
|--------------------------------|--------------------------------------|
426-
| `arrivial_time` | `arriveAt` |
426+
| `arrival_time` | `arriveAt` |
427427
| `avoid` | `avoid` |
428-
| `depature_time` | `departAt` |
428+
| `departure_time` | `departAt` |
429429
| `destinations` | `destination` – specify in the `POST` request body as GeoJSON. |
430430
| `key` | `subscription-key` – For more information, see [Authentication with Azure Maps]. |
431431
| `language` | `language` – For more information, see [Localization support in Azure Maps]. |

articles/azure-maps/power-bi-visual-data-residency.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ To discover your tenant's location in Power BI:
2525
1. Select **About Power BI**
2626
1. Once the **About Power BI** dialog box opens, notice the **your data is stored in** followed by the Tenant location, which is, in this example, Ireland.
2727

28-
:::image type="content" source="media/power-bi-visual/about-power-bi.png" alt-text="Screenshot showing the About Power BI diloag box.":::
28+
:::image type="content" source="media/power-bi-visual/about-power-bi.png" alt-text="Screenshot showing the About Power BI dialog box.":::
2929

3030
The previous example would use the `eu.atlas.microsoft.com` endpoint.
3131

0 commit comments

Comments
 (0)