Skip to content

Commit b741dad

Browse files
committed
Changed 'Client Id' to 'Client ID'.
1 parent a6207e9 commit b741dad

File tree

6 files changed

+23
-23
lines changed

6 files changed

+23
-23
lines changed

articles/azure-maps/how-to-use-map-control.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ You can embed a map in a web page by using the Map Control client-side JavaScrip
116116
language: 'en-US',
117117
authOptions: {
118118
authType: 'aad',
119-
clientId: '<Your Microsoft Entra Client Id>',
119+
clientId: '<Your Microsoft Entra Client ID>',
120120
aadAppId: '<Your Microsoft Entra App Id>',
121121
aadTenant: '<Your Microsoft Entra tenant Id>'
122122
}
@@ -216,7 +216,7 @@ map = new atlas.Map('myMap', {
216216

217217
authOptions: {
218218
authType: 'aad',
219-
clientId: '<Your AAD Client Id>',
219+
clientId: '<Your AAD Client ID>',
220220
aadAppId: '<Your AAD App Id>',
221221
aadTenant: '<Your AAD Tenant Id>'
222222
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ The Azure Maps Web SDK provides a [services module]. This module is a helper lib
6565

6666
```javascript
6767
// Enter your Azure AD client ID.
68-
var clientId = "<Your Azure Active Directory Client Id>";
68+
var clientId = "<Your Azure Active Directory Client ID>";
6969

7070
// Use TokenCredential with OAuth token (Azure AD or Anonymous).
7171
var aadToken = await getAadToken();

articles/azure-maps/how-to-use-ts-rest-sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ Azure Maps provides a collection of npm modules for the [Azure TypeScript REST S
4444
import { InteractiveBrowserCredential } from "@azure/identity";
4545
4646
// Enter your Azure AD client and tenant ID.
47-
const clientId = "<Your Azure Active Directory Client Id>";
47+
const clientId = "<Your Azure Active Directory Client ID>";
4848
const tenantId = "<Your Azure Active Directory Tenant Id>";
4949
5050
// Enter your Azure Maps client ID.
51-
const mapsClientId = "<Your Azure Maps Client Id>";
51+
const mapsClientId = "<Your Azure Maps Client ID>";
5252
5353
// Use InteractiveBrowserCredential with Azure AD client and tenant ID.
5454
const credential = new InteractiveBrowserCredential({

articles/azure-maps/map-get-information-from-coordinate.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ const onload = () => {
3131
authOptions: {
3232
// Use Azure Active Directory authentication.
3333
authType: "aad",
34-
clientId: "<Your Azure Maps Client Id>",
35-
aadAppId: "<Your Azure Active Directory Client Id>",
34+
clientId: "<Your Azure Maps Client ID>",
35+
aadAppId: "<Your Azure Active Directory Client ID>",
3636
aadTenant: "<Your Azure Active Directory Tenant Id>"
3737
}
3838
});
@@ -48,7 +48,7 @@ const onload = () => {
4848
};
4949

5050
// Create a Search client.
51-
const client = MapsSearch(credential, "<Your Azure Maps Client Id>");
51+
const client = MapsSearch(credential, "<Your Azure Maps Client ID>");
5252

5353
// Update the style of mouse cursor to a pointer
5454
map.getCanvasContainer().style.cursor = "pointer";
@@ -118,8 +118,8 @@ const onload = () => {
118118
authOptions: {
119119
// Use Azure Active Directory authentication.
120120
authType: "aad",
121-
clientId: "<Your Azure Maps Client Id>",
122-
aadAppId: "<Your Azure Active Directory Client Id>",
121+
clientId: "<Your Azure Maps Client ID>",
122+
aadAppId: "<Your Azure Active Directory Client ID>",
123123
aadTenant: "<Your Azure Active Directory Tenant Id>"
124124
}
125125
});
@@ -142,7 +142,7 @@ const onload = () => {
142142
fetch(url, {
143143
headers: {
144144
Authorization: "Bearer " + map.authentication.getToken(),
145-
"x-ms-client-id": "<Your Azure Maps Client Id>"
145+
"x-ms-client-id": "<Your Azure Maps Client ID>"
146146
}
147147
})
148148
.then((response) => response.json())

articles/azure-maps/map-route.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ const onload = () => {
3131
authOptions: {
3232
// Use Azure Active Directory authentication.
3333
authType: "aad",
34-
clientId: "<Your Azure Maps Client Id>",
35-
aadAppId: "<Your Azure Active Directory Client Id>",
34+
clientId: "<Your Azure Maps Client ID>",
35+
aadAppId: "<Your Azure Active Directory Client ID>",
3636
aadTenant: "<Your Azure Active Directory Tenant Id>"
3737
}
3838
});
@@ -48,7 +48,7 @@ const onload = () => {
4848
};
4949

5050
// Create a Route client.
51-
const client = MapsRoute(credential, "<Your Azure Maps Client Id>");
51+
const client = MapsRoute(credential, "<Your Azure Maps Client ID>");
5252

5353
// Create a data source and add it to the map.
5454
const dataSource = new atlas.source.DataSource();
@@ -202,8 +202,8 @@ const onload = () => {
202202
authOptions: {
203203
// Use Azure Active Directory authentication.
204204
authType: "aad",
205-
clientId: "<Your Azure Maps Client Id>",
206-
aadAppId: "<Your Azure Active Directory Client Id>",
205+
clientId: "<Your Azure Maps Client ID>",
206+
aadAppId: "<Your Azure Active Directory Client ID>",
207207
aadTenant: "<Your Azure Active Directory Tenant Id>"
208208
}
209209
});
@@ -271,7 +271,7 @@ const onload = () => {
271271
fetch(url, {
272272
headers: {
273273
Authorization: "Bearer " + map.authentication.getToken(),
274-
"x-ms-client-id": "<Your Azure Maps Client Id>"
274+
"x-ms-client-id": "<Your Azure Maps Client ID>"
275275
}
276276
})
277277
.then((response) => response.json())

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ const onload = () => {
3131
authOptions: {
3232
// Use Azure Active Directory authentication.
3333
authType: "aad",
34-
clientId: "<Your Azure Maps Client Id>",
35-
aadAppId: "<Your Azure Active Directory Client Id>",
34+
clientId: "<Your Azure Maps Client ID>",
35+
aadAppId: "<Your Azure Active Directory Client ID>",
3636
aadTenant: "<Your Azure Active Directory Tenant Id>"
3737
}
3838
});
@@ -48,7 +48,7 @@ const onload = () => {
4848
};
4949

5050
// Create a Search client.
51-
const client = MapsSearch(credential, "<Your Azure Maps Client Id>");
51+
const client = MapsSearch(credential, "<Your Azure Maps Client ID>");
5252

5353
// Create a data source and add it to the map.
5454
const datasource = new atlas.source.DataSource();
@@ -124,8 +124,8 @@ const onload = () => {
124124
authOptions: {
125125
// Use Azure Active Directory authentication.
126126
authType: "aad",
127-
clientId: "<Your Azure Maps Client Id>",
128-
aadAppId: "<Your Azure Active Directory Client Id>",
127+
clientId: "<Your Azure Maps Client ID>",
128+
aadAppId: "<Your Azure Active Directory Client ID>",
129129
aadTenant: "<Your Azure Active Directory Tenant Id>"
130130
}
131131
});
@@ -151,7 +151,7 @@ const onload = () => {
151151
fetch(url, {
152152
headers: {
153153
Authorization: "Bearer " + map.authentication.getToken(),
154-
"x-ms-client-id": "<Your Azure Maps Client Id>"
154+
"x-ms-client-id": "<Your Azure Maps Client ID>"
155155
}
156156
})
157157
.then((response) => response.json())

0 commit comments

Comments
 (0)