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/glossary.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
@@ -281,7 +281,7 @@ The following list describes common words used with the Azure Maps services.
281
281
282
282
<aname="postal-code"></a> **Postal code**: A series of letters or numbers, or both, in a specific format. The postal-code is used by the postal service of a country/region to divide geographic areas into zones in order to simplify delivery of mail.
283
283
284
-
<aname="primary-key"></a> **Primary key**: The first of two subscriptions keys provided for Azure Maps shared key authentication. See [Shared key authentication](#shared-key-authentication).
284
+
<aname="primary-key"></a> **Primary key**: The first of two subscription keys provided for Azure Maps shared key authentication. See [Shared key authentication](#shared-key-authentication).
285
285
286
286
<aname="prime-meridian"></a> **Prime meridian**: A line of longitude that represents 0-degrees longitude. Generally, longitude values decrease when traveling in a westerly direction until 180 degrees and increase when traveling in easterly directions to -180-degrees.
Copy file name to clipboardExpand all lines: articles/azure-maps/quick-android-map.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
@@ -49,16 +49,16 @@ Create a new Azure Maps account using the following steps:
49
49
50
50
:::image type="content" source="./media/shared/create-account.png" alt-text="A screenshot that shows the Create Maps account pane in the Azure portal.":::
51
51
52
-
## Get the primary key for your account
52
+
## Get the subscription key for your account
53
53
54
-
Once your Azure Maps account is successfully created, retrieve the primary key that enables you to query the Maps APIs.
54
+
Once your Azure Maps account is successfully created, retrieve the subscription key that enables you to query the Maps APIs.
55
55
56
56
1. Open your Azure Maps account in the portal.
57
57
2. In the left pane, select **Authentication**.
58
58
3. Copy the **Primary Key** and save it locally to use later in this tutorial.
59
59
60
60
>[!NOTE]
61
-
> If you use the Azure subscription key instead of the Azure Maps primary key, your map won't render properly. Also, for security purposes, it is recommended that you rotate between your primary and secondary keys. To rotate keys, update your app to use the secondary key, deploy, then press the cycle/refresh button beside the primary key to generate a new primary key. The old primary key will be disabled. For more information on key rotation, see [Set up Azure Key Vault with key rotation and auditing](../key-vault/secrets/tutorial-rotation-dual.md)
61
+
> For security purposes, it is recommended that you rotate between your primary and secondary keys. To rotate keys, update your app to use the secondary key, deploy, then press the cycle/refresh button beside the primary key to generate a new primary key. The old primary key will be disabled. For more information on key rotation, see [Set up Azure Key Vault with key rotation and auditing](../key-vault/secrets/tutorial-rotation-dual.md)
62
62
63
63
:::image type="content" source="./media/quick-android-map/get-key.png" alt-text="A screenshot showing the Azure Maps Primary key in the Azure portal.":::
Copy file name to clipboardExpand all lines: articles/azure-maps/quick-demo-map-app.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
@@ -1,7 +1,7 @@
1
1
---
2
2
title: 'Quickstart: Interactive map search with Azure Maps'
3
3
titeSuffix: Microsoft Azure Maps
4
-
description: 'Quickstart: Learn how to create interactive, searchable maps. See how to create an Azure Maps account, get a primary key, and use the Web SDK to set up map applications'
4
+
description: 'Quickstart: Learn how to create interactive, searchable maps. See how to create an Azure Maps account, get the subscription key, and use the Web SDK to set up map applications'
5
5
author: eriklindeman
6
6
ms.author: eriklind
7
7
ms.date: 12/23/2021
@@ -16,7 +16,7 @@ ms.custom: mvc, mode-other
16
16
In this quickstart, you will learn how to use Azure Maps to create a map that gives users an interactive search experience. It walks you through these basic steps:
17
17
18
18
* Create your own Azure Maps account.
19
-
* Get your primary key to use in the demo web application.
19
+
* Get your Azure Maps subscription key to use in the demo web application.
20
20
* Download and open the demo map application.
21
21
22
22
This quickstart uses the Azure Maps Web SDK, however the Azure Maps service can be used with any map control, such as these popular [open-source map controls](open-source-projects.md#third-part-map-control-plugins) that the Azure Maps team has created plugin's for.
@@ -49,13 +49,13 @@ Create a new Azure Maps account with the following steps:
49
49
50
50
## Get the subscription key for your account
51
51
52
-
Once your Azure Maps account is successfully created, retrieve the primary key that enables you to query the Maps APIs.
52
+
Once your Azure Maps account is successfully created, retrieve the subscription key that enables you to query the Maps APIs.
53
53
54
54
1. Open your Maps account in the portal.
55
55
2. In the settings section, select **Authentication**.
56
56
3. Copy the **Primary Key** and save it locally to use later in this tutorial.
57
57
58
-
:::image type="content" source="./media/quick-demo-map-app/get-key.png" alt-text="Screenshot showing your Azure Maps Primary Key in the Azure portal" lightbox="./media/quick-demo-map-app/get-key.png":::
58
+
:::image type="content" source="./media/quick-demo-map-app/get-key.png" alt-text="Screenshot showing your Azure Maps subscription key in the Azure portal" lightbox="./media/quick-demo-map-app/get-key.png":::
59
59
60
60
>[!NOTE]
61
61
> This quickstart uses the [Shared Key](azure-maps-authentication.md#shared-key-authentication) authentication approach for demonstration purposes, but the preferred approach for any production environment is to use [Azure Active Directory](azure-maps-authentication.md#azure-ad-authentication) authentication.
@@ -67,7 +67,7 @@ Once your Azure Maps account is successfully created, retrieve the primary key t
67
67
3. Add the **Primary Key** value you got in the preceding section
68
68
1. Comment out all of the code in the `authOptions` function, this code is used for Azure Active Directory authentication.
69
69
1. Uncomment the last two lines in the `authOptions` function, this code is used for Shared Key authentication, the approach being used in this quickstart.
70
-
1. Replace `<Your Azure Maps Key>` with the **Primary Key** value from the preceding section.
70
+
1. Replace `<Your Azure Maps Key>` with the subscription key value from the preceding section.
0 commit comments