Skip to content

Commit 5f5df72

Browse files
committed
Add retire banner for the Web SDK Service module.
1 parent aa2ba24 commit 5f5df72

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

articles/azure-maps/how-to-use-best-practices-for-routing.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,12 @@ The following image is an example of rendering alternative routes with specified
265265

266266
The Azure Maps Web SDK provides a [Service module]. This module is a helper library that makes it easy to use the Azure Maps REST APIs in web or Node.js applications, using JavaScript or TypeScript. The Service module can be used to render the returned routes on the map. The module automatically determines which API to use with GET and POST requests.
267267

268+
> [!NOTE]
269+
>
270+
> **Azure Maps Web SDK Service Module retirement**
271+
>
272+
> The Azure Maps Web SDK Service Module is now deprecated and will be retired on 9/30/26. To avoid service disruptions, we recommend migrating to the Azure Maps JavaScript REST SDK by 9/30/26. For more information, see [JavaScript/TypeScript REST SDK Developers Guide (preview)](how-to-dev-guide-js-sdk.md).
273+
268274
## Next steps
269275

270276
To learn more, please see:

articles/azure-maps/how-to-use-services-module.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Microsoft Azure Maps
44
description: Learn about the Azure Maps services module. See how to load and use this helper library to access Azure Maps REST services in web or Node.js applications.
55
author: sinnypan
66
ms.author: sipa
7-
ms.date: 06/26/2023
7+
ms.date: 03/27/2024
88
ms.topic: how-to
99
ms.service: azure-maps
1010
services: azure-maps
@@ -15,6 +15,12 @@ ms.custom: devx-track-js
1515

1616
The Azure Maps Web SDK provides a [services module]. This module is a helper library that makes it easy to use the Azure Maps REST services in web or Node.js applications by using JavaScript or TypeScript.
1717

18+
> [!NOTE]
19+
>
20+
> **Azure Maps Web SDK Service Module retirement**
21+
>
22+
> The Azure Maps Web SDK Service Module is now deprecated and will be retired on 9/30/26. To avoid service disruptions, we recommend migrating to the Azure Maps JavaScript REST SDK by 9/30/26. For more information, see [JavaScript/TypeScript REST SDK Developers Guide (preview)](how-to-dev-guide-js-sdk.md).
23+
1824
## Use the services module in a webpage
1925

2026
1. Create a new HTML file.

articles/azure-maps/quick-demo-map-app.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Once your Azure Maps account is successfully created, retrieve the subscription
7272
## Open the demo application
7373

7474
1. Open the file **AzureMapDemo.html** in a browser of your choice.
75-
2. Observe the map shown of the City of Los Angeles. Zoom in and out to see how the map automatically renders with more or less information depending on the zoom level.
75+
2. Observe the map shown of New York City. Zoom in and out to see how the map automatically renders with more or less information depending on the zoom level.
7676
3. Change the default center of the map. In the **AzureMapDemo.html** file, search for the variable named **center**. Replace the longitude, latitude pair value for this variable with the new values **[-74.0060, 40.7128]**. Save the file and refresh your browser.
7777
4. Try out the interactive search experience. In the search box on the upper-left corner of the demo web application, search for **restaurants**.
7878
5. Move your mouse over the list of addresses and locations that appear below the search box. Notice how the corresponding pin on the map pops out information about that location. For privacy of private businesses, fictitious names and addresses are shown.
@@ -102,7 +102,6 @@ In this quickstart, you created an Azure Maps account and a demo application. Ta
102102
> [!div class="nextstepaction"]
103103
> [Search nearby points of interest with Azure Maps]
104104
105-
[Azure Active Directory]: azure-maps-authentication.md#azure-ad-authentication
106105
[Azure portal]: https://portal.azure.com
107106
[Find an address with Azure Maps search service]: how-to-search-for-address.md
108107
[free account]: https://azure.microsoft.com/free/?WT.mc_id=A261C142F

articles/azure-maps/tutorial-search-location.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,12 @@ The Map Control API is a convenient client library. This API allows you to easil
155155

156156
This section shows how to use the Maps [Search API] to find a point of interest on your map. It's a RESTful API designed for developers to search for addresses, points of interest, and other geographical information. The Search service assigns a latitude and longitude information to a specified address. The **Service Module** explained next can be used to search for a location using the Maps Search API.
157157

158+
> [!NOTE]
159+
>
160+
> **Azure Maps Web SDK Service Module retirement**
161+
>
162+
> The Azure Maps Web SDK Service Module is now deprecated and will be retired on 9/30/26. To avoid service disruptions, we recommend migrating to the Azure Maps JavaScript REST SDK by 9/30/26. For more information, see [JavaScript/TypeScript REST SDK Developers Guide (preview)](how-to-dev-guide-js-sdk.md).
163+
158164
### Service Module
159165

160166
1. In the map `ready` event handler, construct the search service URL by adding the following JavaScript code immediately after `map.layers.add(resultLayer);`:

0 commit comments

Comments
 (0)