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/android-sdk-migration-guide.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ To use the Map Control in a web page, you must have one of the following prerequ
22
22
23
23
## Create a WebView
24
24
25
-
If your Android application doesn't already have a WebView, you need to add one. You can do so by adding the WebView element to your layout XML or programmatically in your Java code. Make sure to set up the WebView to occupy the desired area of your layout.
25
+
Add a `WebView` if your Android application doesn't have one. Do so by adding the `WebView` element to your layout XML or programmatically in your Java code. Be sure it's configured to occupy the desired area of your layout.
26
26
27
27
```xml
28
28
<?xml version="1.0" encoding="utf-8"?>
@@ -41,7 +41,7 @@ If your Android application doesn't already have a WebView, you need to add one.
@@ -144,11 +144,11 @@ To enable communication between your Android application and the WebView, you ca
144
144
145
145
## Clean Up Native Map Implementation
146
146
147
-
Remove the code related to the native Azure Maps Android SDK from your project. This includes dependencies and initialization code related to `com.azure.android:azure-maps-control`.
147
+
Remove code related to the native Azure Maps Android SDK, including dependencies and initialization code related to `com.azure.android:azure-maps-control`.
148
148
149
149
## Testing
150
150
151
-
Test your application thoroughly to ensure that the migration has been successful. Check for any issues related to map functionality, user interactions, and performance.
151
+
Test your application thoroughly to ensure the migration was successful. Check for issues related to map functionality, user interactions, and performance.
Copy file name to clipboardExpand all lines: articles/azure-maps/ios-sdk-migration-guide.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ To use the Map Control in a web page, you must have one of the following prerequ
22
22
23
23
## Create a WebView
24
24
25
-
If your iOS application doesn't already have a WebView, you need to add one. You can do so by adding a WKWebView to your storyboard or programmatically in your Swift code. Make sure to set up the WKWebView to occupy the desired area of your view.
25
+
Add a `WebView` if your iOS application doesn't have one. Do so by adding the `WKWebView` to your storyboard or programmatically in your Swift code. Be sure it's configured to occupy the desired area of your layout.
26
26
27
27
```swift
28
28
importUIKit
@@ -123,15 +123,15 @@ Save and run the app. A map should be shown within a WebView. Add any features o
123
123
124
124
## Communication between native code and WebView (optional)
125
125
126
-
To enable communication between your iOS application and the WebView, you can use the `WKScriptMessageHandler` protocol provided by the `WKWebView` class. It allows you to establish a bridge for communication between JavaScript running in the WebView and your Swift code. For more information, see the [iOS webkit documentation].
126
+
To enable communication between your iOS application and the WebView, you can use the `WKScriptMessageHandler` protocol provided by the `WKWebView` class. It allows you to establish a bridge for communication between JavaScript running in the WebView and your Swift code. For more information, see [WKScriptMessageHandler] in the iOS webkit documentation.
127
127
128
128
## Clean Up Native Map Implementation
129
129
130
-
Remove the code related to the native Azure Maps iOS SDK from your project. This includes dependencies and initialization code related to `azure-maps-ios-sdk-distribution`.
130
+
Remove code related to the native Azure Maps iOS SDK from your project, including dependencies and initialization code related to `azure-maps-ios-sdk-distribution`.
131
131
132
132
## Testing
133
133
134
-
Test your application thoroughly to ensure that the migration has been successful. Check for any issues related to map functionality, user interactions, and performance.
134
+
Test your application thoroughly to ensure that the migration was successful. Check for issues related to map functionality, user interactions, and performance.
135
135
136
136
## Next steps
137
137
@@ -145,7 +145,7 @@ Learn how to add maps to web and mobile applications using the Map Control clien
Copy file name to clipboardExpand all lines: articles/azure-maps/web-sdk-migration-guide.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: The Azure Maps Web SDK v1 and v2 migration guide
2
+
title: The Azure Maps Web SDK migration guide
3
3
titleSuffix: Microsoft Azure Maps
4
4
description: Find out how to migrate your Azure Maps Web SDK v1 and v2 applications to the most recent version of the Web SDK.
5
5
author: sinnypan
@@ -9,7 +9,7 @@ ms.topic: how-to
9
9
ms.service: azure-maps
10
10
---
11
11
12
-
# The Azure Maps Web SDK v1 and v2 migration guide
12
+
# The Azure Maps Web SDK migration guide
13
13
14
14
Thank you for choosing the Azure Maps Web SDK for your mapping needs. This migration guide helps you transition from v1 and v2 to v3, allowing you to take advantage of the latest features and enhancements.
15
15
@@ -21,7 +21,7 @@ Before you start the migration process, it's important to familiarize yourself w
21
21
22
22
### CDN
23
23
24
-
If you're using CDN ([content delivery network]), update the references to the [v3](#v3) stylesheet and JavaScript within the `head` element of your HTML files.
24
+
If you're using CDN ([content delivery network]), update the references to the [v3](#v3) stylesheet and JavaScript in the `head` element of your HTML files.
0 commit comments