You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-maps/how-to-dev-guide-csharp-sdk.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -299,7 +299,7 @@ for (var i = 0; i < count; i++)
299
299
}
300
300
```
301
301
302
-
## Using V1 SDKs for Search and Render
302
+
## Using v1 SDKs for Search and Render
303
303
304
304
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).
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).
Copy file name to clipboardExpand all lines: articles/azure-maps/how-to-dev-guide-py-sdk.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -354,9 +354,9 @@ if __name__ == '__main__':
354
354
```
355
355
356
356
357
-
## Using V1 SDKs for Search and Render
357
+
## Using v1 SDKs for Search and Render
358
358
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.
Copy file name to clipboardExpand all lines: articles/azure-maps/migrate-from-google-maps-web-app.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ ms.subservice: web-sdk
11
11
12
12
# Tutorial: Migrate a web app from Google Maps
13
13
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:
15
15
16
16
> [!div class="checklist"]
17
17
> * Load a map
@@ -56,7 +56,7 @@ If you don't have an Azure subscription, create a [free account] before you begi
56
56
57
57
## Key features support
58
58
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.
60
60
61
61
| Google Maps feature | Azure Maps Web SDK support |
@@ -89,7 +89,7 @@ The following are some key differences between the Google Maps and Azure Maps We
89
89
90
90
## Web SDK side-by-side examples
91
91
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].
93
93
94
94
**Topics**
95
95
@@ -286,7 +286,7 @@ Here's an example of Azure Maps with the language set to "fr" and the user regio
286
286
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.
287
287
288
288
> [!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.
290
290
291
291
#### Before: Google Maps
292
292
@@ -1692,9 +1692,9 @@ The following are some more code samples related to Google Maps migration:
1692
1692
*[Show directions from A to B]
1693
1693
*[Search Autosuggest with jQuery UI]
1694
1694
1695
-
## Google Maps V3 to Azure Maps Web SDK class mapping
1695
+
## Google Maps v3 to Azure Maps Web SDK class mapping
1696
1696
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.
Copy file name to clipboardExpand all lines: articles/azure-maps/rest-api-creator.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ Pre-release version of a Creator service. Preview releases contain new functiona
52
52
|[Tileset][Tileset-preview]| 2023-03-01-preview | A collection of vector tiles that render on the map, created from an existing dataset. |
53
53
|[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. |
54
54
55
-
<!--- V2 is the latest stable release of each Creator service --->
55
+
<!--- v2 is the latest stable release of each Creator service --->
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/management/tag-support.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2367,8 +2367,6 @@ To get the same data as a file of comma-separated values, download [tag-support.
2367
2367
<aid="network-limitations"></a>
2368
2368
2369
2369
> [!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
-
>
2372
2370
> 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.
2373
2371
>
2374
2372
> 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.
0 commit comments