Skip to content

Commit 3080f1c

Browse files
authored
Merge pull request #126455 from stevemunk/client-id
Changed 'Client Id' to 'Client ID'.
2 parents 3443699 + 53d34be commit 3080f1c

File tree

6 files changed

+34
-34
lines changed

6 files changed

+34
-34
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ 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>',
120-
aadAppId: '<Your Microsoft Entra App Id>',
121-
aadTenant: '<Your Microsoft Entra tenant Id>'
119+
clientId: '<Your Microsoft Entra Client ID>',
120+
aadAppId: '<Your Microsoft Entra App ID>',
121+
aadTenant: '<Your Microsoft Entra tenant ID>'
122122
}
123123
});
124124
}
@@ -216,9 +216,9 @@ map = new atlas.Map('myMap', {
216216

217217
authOptions: {
218218
authType: 'aad',
219-
clientId: '<Your AAD Client Id>',
220-
aadAppId: '<Your AAD App Id>',
221-
aadTenant: '<Your AAD Tenant Id>'
219+
clientId: '<Your AAD Client ID>',
220+
aadAppId: '<Your AAD App ID>',
221+
aadTenant: '<Your AAD Tenant ID>'
222222
}
223223
});
224224
```

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: 3 additions & 3 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>";
48-
const tenantId = "<Your Azure Active Directory Tenant Id>";
47+
const clientId = "<Your Azure Active Directory Client ID>";
48+
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: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ 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>",
36-
aadTenant: "<Your Azure Active Directory Tenant Id>"
34+
clientId: "<Your Azure Maps Client ID>",
35+
aadAppId: "<Your Azure Active Directory Client ID>",
36+
aadTenant: "<Your Azure Active Directory Tenant ID>"
3737
}
3838
});
3939

@@ -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,9 +118,9 @@ 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>",
123-
aadTenant: "<Your Azure Active Directory Tenant Id>"
121+
clientId: "<Your Azure Maps Client ID>",
122+
aadAppId: "<Your Azure Active Directory Client ID>",
123+
aadTenant: "<Your Azure Active Directory Tenant ID>"
124124
}
125125
});
126126

@@ -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: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ 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>",
36-
aadTenant: "<Your Azure Active Directory Tenant Id>"
34+
clientId: "<Your Azure Maps Client ID>",
35+
aadAppId: "<Your Azure Active Directory Client ID>",
36+
aadTenant: "<Your Azure Active Directory Tenant ID>"
3737
}
3838
});
3939

@@ -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,9 +202,9 @@ 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>",
207-
aadTenant: "<Your Azure Active Directory Tenant Id>"
205+
clientId: "<Your Azure Maps Client ID>",
206+
aadAppId: "<Your Azure Active Directory Client ID>",
207+
aadTenant: "<Your Azure Active Directory Tenant ID>"
208208
}
209209
});
210210

@@ -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: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ 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>",
36-
aadTenant: "<Your Azure Active Directory Tenant Id>"
34+
clientId: "<Your Azure Maps Client ID>",
35+
aadAppId: "<Your Azure Active Directory Client ID>",
36+
aadTenant: "<Your Azure Active Directory Tenant ID>"
3737
}
3838
});
3939

@@ -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,9 +124,9 @@ 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>",
129-
aadTenant: "<Your Azure Active Directory Tenant Id>"
127+
clientId: "<Your Azure Maps Client ID>",
128+
aadAppId: "<Your Azure Active Directory Client ID>",
129+
aadTenant: "<Your Azure Active Directory Tenant ID>"
130130
}
131131
});
132132

@@ -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)