Skip to content

Commit 0fc8e78

Browse files
authored
Merge pull request #298292 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents e2ca634 + 194ee03 commit 0fc8e78

10 files changed

+20
-22
lines changed

articles/azure-maps/creator-long-running-operation-v2.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Azure Maps long-running operation API V2
3-
description: Learn about long-running asynchronous V2 background processing in Azure Maps
2+
title: Azure Maps long-running operation API v2
3+
description: Learn about long-running asynchronous v2 background processing in Azure Maps
44
author: faterceros
55
ms.author: aterceros
66
ms.date: 09/16/2024
@@ -10,7 +10,7 @@ ms.subservice: creator
1010
ms.custom: mvc
1111
---
1212

13-
# Creator Long-Running Operation API V2
13+
# Creator Long-Running Operation API v2
1414

1515
> [!NOTE]
1616
>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ for (var i = 0; i < count; i++)
299299
}
300300
```
301301

302-
## Using V1 SDKs for Search and Render
302+
## Using v1 SDKs for Search and Render
303303

304304
For more information on using Search v1, see [Azure Maps Search client library for .NET](https://www.nuget.org/packages/Azure.Maps.Search/1.0.0-beta.5). For more information on using Render v1, see [Azure Maps Render client library for .NET](https://www.nuget.org/packages/Azure.Maps.Rendering/1.0.0-beta.3).
305305

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -345,9 +345,9 @@ main().catch(console.error);
345345

346346
```
347347

348-
## Use V1 SDK
348+
## Use v1 SDK
349349

350-
We are working to make all V1 features available in V2, until then, install the following V1 SDK packages if needed:
350+
We are working to make all v1 features available in v2, until then, install the following v1 SDK packages if needed:
351351

352352
```bash
353353
npm install @azure-rest/map-search-v1@npm:@azure-rest/map-search@^1.0.0
@@ -361,7 +361,7 @@ const MapsSearchV1 = require("@azure-rest/map-search-v1").default;
361361
const MapsSearchV2 = require("@azure-rest/map-search-v2").default;
362362
```
363363

364-
The following example demonstrates creating a function that accepts an address and search POIs around it. Use V2 SDK to get the coordinates of the address(/geocode) and V1 SDK to search POIs around it(/search/nearby).
364+
The following example demonstrates creating a function that accepts an address and search POIs around it. Use v2 SDK to get the coordinates of the address(/geocode) and v1 SDK to search POIs around it(/search/nearby).
365365

366366
```javascript
367367
const MapsSearchV1 = require("@azure-rest/map-search-v1").default;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,9 +354,9 @@ if __name__ == '__main__':
354354
```
355355

356356

357-
## Using V1 SDKs for Search and Render
357+
## Using v1 SDKs for Search and Render
358358

359-
To use Search V1 and Render V1 SDK, please refer to Search V1 SDK [package](https://pypi.org/project/azure-maps-search/1.0.0b2/) page and Render V1 SDK [package](https://pypi.org/project/azure-maps-render/1.0.0b2/) for more information.
359+
To use Search v1 and Render v1 SDK, please refer to Search v1 SDK [package](https://pypi.org/project/azure-maps-search/1.0.0b2/) page and Render v1 SDK [package](https://pypi.org/project/azure-maps-render/1.0.0b2/) for more information.
360360

361361

362362
## Additional information

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.subservice: web-sdk
1111

1212
# Tutorial: Migrate a web app from Google Maps
1313

14-
Most web apps, which use Google Maps, are using the Google Maps V3 JavaScript SDK. The Azure Maps Web SDK is the suitable Azure-based SDK to migrate to. The Azure Maps Web SDK lets you customize interactive maps with your own content and imagery. You can run your app on both web or mobile applications. This control makes use of WebGL, allowing you to render large data sets with high performance. Develop with this SDK using JavaScript or TypeScript. This tutorial demonstrates:
14+
Most web apps, which use Google Maps, are using the Google Maps v3 JavaScript SDK. The Azure Maps Web SDK is the suitable Azure-based SDK to migrate to. The Azure Maps Web SDK lets you customize interactive maps with your own content and imagery. You can run your app on both web or mobile applications. This control makes use of WebGL, allowing you to render large data sets with high performance. Develop with this SDK using JavaScript or TypeScript. This tutorial demonstrates:
1515

1616
> [!div class="checklist"]
1717
> * Load a map
@@ -56,7 +56,7 @@ If you don't have an Azure subscription, create a [free account] before you begi
5656
5757
## Key features support
5858

59-
The table lists key API features in the Google Maps V3 JavaScript SDK and the supported API feature in the Azure Maps Web SDK.
59+
The table lists key API features in the Google Maps v3 JavaScript SDK and the supported API feature in the Azure Maps Web SDK.
6060

6161
| Google Maps feature | Azure Maps Web SDK support |
6262
|-------------------------|:--------------------------:|
@@ -89,7 +89,7 @@ The following are some key differences between the Google Maps and Azure Maps We
8989

9090
## Web SDK side-by-side examples
9191

92-
This collection has code samples for each platform, and each sample covers a common use case. It's intended to help you migrate your web application from Google Maps V3 JavaScript SDK to the Azure Maps Web SDK. Code samples related to web applications are provided in JavaScript. However, Azure Maps also provides TypeScript definitions as another option through an [npm module].
92+
This collection has code samples for each platform, and each sample covers a common use case. It's intended to help you migrate your web application from Google Maps v3 JavaScript SDK to the Azure Maps Web SDK. Code samples related to web applications are provided in JavaScript. However, Azure Maps also provides TypeScript definitions as another option through an [npm module].
9393

9494
**Topics**
9595

@@ -286,7 +286,7 @@ Here's an example of Azure Maps with the language set to "fr" and the user regio
286286
Dynamic maps in both Azure and Google Maps can be programmatically moved to new geographic locations. To do so, call the appropriate functions in JavaScript. The examples show how to make the map display satellite aerial imagery, center the map over a location, and change the zoom level to 15 in Google Maps. The following location coordinates are used: longitude: -111.0225 and latitude: 35.0272.
287287

288288
> [!NOTE]
289-
> Google Maps uses tiles that are 256 pixels in dimensions, while Azure Maps uses a larger 512-pixel tile. Thus, Azure Maps requires less number of network requests to load the same map area as Google Maps. Due to the way tile pyramids work in map controls, you need to subtract the zoom level used in Google Maps by the number one when using Azure Maps. This arithmetic operation ensures that larger tiles in Azure Maps render that same map area as in Google Maps,
289+
> Google Maps uses 256-pixel tiles, whereas Azure Maps uses larger 512-pixel tiles. Consequently, Azure Maps requires fewer network requests to load the same map area as Google Maps. Due to the tile pyramid structure in map controls, you need to subtract one from the zoom level used in Google Maps when using Azure Maps. This adjustment ensures that the larger tiles that Azure Maps renders will use the same map area as used in Google Maps.
290290
291291
#### Before: Google Maps
292292

@@ -1692,9 +1692,9 @@ The following are some more code samples related to Google Maps migration:
16921692
* [Show directions from A to B]
16931693
* [Search Autosuggest with jQuery UI]
16941694

1695-
## Google Maps V3 to Azure Maps Web SDK class mapping
1695+
## Google Maps v3 to Azure Maps Web SDK class mapping
16961696

1697-
The following appendix provides a cross reference of the commonly used classes in Google Maps V3 and the equivalent Azure Maps Web SDK.
1697+
The following appendix provides a cross reference of the commonly used classes in Google Maps v3 and the equivalent Azure Maps Web SDK.
16981698

16991699
### Core Classes
17001700

articles/azure-maps/migrate-route-v1-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ This article explains how to migrate the [Azure Maps Route v1.0] APIs to [Azure
5656

5757
### Route Range notable differences
5858

59-
| Feature | V1.0 | V2025-01-01 |
59+
| Feature | v1.0 | v2025-01-01 |
6060
|-------------------|-----------|-----------------------------------------------------------|
6161
| Coordinate format | Latitude/Longitude | Longitude/latitude, as defined by [GeoJSON]. |
6262
| Electric consumption model | Supported | Not Supported |

articles/azure-maps/release-notes-map-control.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ This document contains information about new features and other changes to the M
137137

138138
#### Other changes
139139

140-
- The accessibility feature for screen reader has been upgraded to utilize the Search V2 API (reverse geocoding).
140+
- The accessibility feature for screen reader has been upgraded to utilize the Search v2 API (reverse geocoding).
141141

142142
- Enhanced accessibility in the Compass and Pitch controls.
143143

@@ -513,7 +513,7 @@ This update is the first preview of the upcoming 3.0.0 release. The underlying [
513513

514514
#### Other changes
515515

516-
- The accessibility feature for screen reader has been upgraded to utilize the Search V2 API (reverse geocoding).
516+
- The accessibility feature for screen reader has been upgraded to utilize the Search v2 API (reverse geocoding).
517517

518518
### [2.3.4] (November 1, 2023)
519519

articles/azure-maps/rest-api-creator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Pre-release version of a Creator service. Preview releases contain new functiona
5252
| [Tileset][Tileset-preview] | 2023-03-01-preview | A collection of vector tiles that render on the map, created from an existing dataset. |
5353
| [Wayfinding] | 2023-03-01-preview | Wayfinding is a technology that helps people navigate through complex indoor environments such as malls, offices, stadiums, airports and office buildings. |
5454

55-
<!--- V2 is the latest stable release of each Creator service --->
55+
<!--- v2 is the latest stable release of each Creator service --->
5656

5757
[Alias]: /rest/api/maps-creator/alias
5858
[Conversion]: /rest/api/maps-creator/conversion

articles/azure-resource-manager/management/tag-support.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2367,8 +2367,6 @@ To get the same data as a file of comma-separated values, download [tag-support.
23672367
<a id="network-limitations"></a>
23682368

23692369
> [!NOTE]
2370-
> For Azure Front Door Service, you can apply tags when creating the resource, but updating or adding tags is not currently supported. Front Door doesn't support the use of # or : in the tag name.
2371-
>
23722370
> Azure DNS zones and Traffic Manager doesn't support the use of spaces in the tag or a tag that starts with a number. Azure DNS and Traffic Manager tag names do not support special and unicode characters. The value can contain all characters.
23732371
>
23742372
> Azure IP Groups and Azure Firewall Policies don't support PATCH operations, which means they don't support updating tags through the portal. Instead, use the update commands for those resources. For example, you can update tags for an IP group with the [az network ip-group update](/cli/azure/network/ip-group#az-network-ip-group-update) command.

articles/logic-apps/logic-apps-workflow-actions-triggers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1717,7 +1717,7 @@ This action stops the run for a workflow instance, cancels any actions in progre
17171717

17181718
*Optional*
17191719

1720-
The properties for the "runStatus" object apply only
1720+
The properties for the "runError" object apply only
17211721
when the "runStatus" property is set to "Failed" status.
17221722

17231723
| Value | Type | Description |

0 commit comments

Comments
 (0)