Skip to content

Commit 5c4462e

Browse files
authored
Merge pull request #248420 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 4c4a0bb + 7ce14dd commit 5c4462e

17 files changed

+96
-69
lines changed

articles/active-directory-b2c/tenant-management-directory-quota.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ The response from the API call looks similar to the following json:
6565
{
6666
"directorySizeQuota": {
6767
"used": 211802,
68-
"total": 300000
68+
"total": 50000000
6969
}
7070
}
7171
]
@@ -81,4 +81,4 @@ If your tenant usage is higher that 80%, you can remove inactive users or reques
8181

8282
## Request increase directory quota size
8383

84-
You can request to increase the quota size by [contacting support](find-help-open-support-ticket.md)
84+
You can request to increase the quota size by [contacting support](find-help-open-support-ticket.md)

articles/active-directory/app-proxy/application-proxy-faq.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ sections:
152152
- If the certificate was created with Microsoft Software Key Storage Provider, the RSA algorithm must be used.
153153
154154
- question: |
155-
What is the length of the default and "long" back-end timeout? Can the timeout be extended?
155+
What is the length of the default and "long" backend timeout? Can the timeout be extended?
156156
answer: |
157157
The default length is 85 seconds. The "long" setting is 180 seconds. The timeout limit can't be extended.
158158
@@ -170,7 +170,13 @@ sections:
170170
171171
> [!IMPORTANT]
172172
> Deleting CWAP_AuthSecret breaks pre-authentication for Azure AD Application Proxy. Don't delete CWAP_AuthSecret.
173-
173+
174+
- question: |
175+
I'm using or want to use Azure Active Directory Application Proxy. Can I replace the `onmicrosoft.com` fallback domain of my tenant in Microsoft 365 as suggested in the article [Add and replace your onmicrosoft.com fallback domain in Microsoft 365](../../microsoft-365/admin/setup/add-or-replace-your-onmicrosoftcom-domain?view=o365-worldwide)?
176+
answer: |
177+
No. You must use the original fallback domain.
178+
179+
174180
- question: |
175181
How do I change the landing page my application loads?
176182
answer: |

articles/azure-maps/how-to-secure-spa-users.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ Create the web application in Azure AD for users to sign in. The web application
4040
6. Copy the Azure AD app ID and the Azure AD tenant ID from the app registration to use in the Web SDK. Add the Azure AD app registration details and the `x-ms-client-id` from the Azure Map account to the Web SDK.
4141

4242
```javascript
43-
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css" />
44-
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js" />
43+
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" type="text/css" />
44+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js" />
4545
<script>
4646
var map = new atlas.Map("map", {
4747
center: [-122.33, 47.64],

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,10 +213,10 @@ Your file should now look similar to the following HTML:
213213
<meta name="viewport" content="width=device-width, user-scalable=no" />
214214
<title>Indoor Maps App</title>
215215

216-
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css" />
216+
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" type="text/css" />
217217
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/indoor/0.2/atlas-indoor.min.css" type="text/css"/>
218218

219-
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>
219+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
220220
<script src="https://atlas.microsoft.com/sdk/javascript/indoor/0.2/atlas-indoor.min.js"></script>
221221

222222
<style>

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ You can embed a map in a web page by using the Map Control client-side JavaScrip
3535
* Use the globally hosted CDN version of the Azure Maps Web SDK by adding references to the JavaScript and `stylesheet` in the `<head>` element of the HTML file:
3636

3737
```html
38-
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css">
39-
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>
38+
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" type="text/css">
39+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
4040
```
4141

4242
* Load the Azure Maps Web SDK source code locally using the [azure-maps-control] npm package and host it with your app. This package also includes TypeScript definitions.
@@ -46,7 +46,7 @@ You can embed a map in a web page by using the Map Control client-side JavaScrip
4646
Then add references to the Azure Maps `stylesheet` to the `<head>` element of the file:
4747

4848
```html
49-
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css" />
49+
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" type="text/css" />
5050
```
5151

5252
> [!NOTE]
@@ -153,8 +153,8 @@ You can embed a map in a web page by using the Map Control client-side JavaScrip
153153
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
154154

155155
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. -->
156-
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css">
157-
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>
156+
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" type="text/css">
157+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
158158

159159

160160
<script type="text/javascript">

articles/azure-maps/how-to-use-spatial-io-module.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ You can load the Azure Maps spatial IO module using one of the two options:
8484
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
8585

8686
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. -->
87-
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css" />
88-
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.js"></script>
87+
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" type="text/css" />
88+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.js"></script>
8989

9090
<script type='text/javascript'>
9191
@@ -162,8 +162,8 @@ You can load the Azure Maps spatial IO module using one of the two options:
162162
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
163163

164164
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. -->
165-
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css" />
166-
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.js"></script>
165+
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" type="text/css" />
166+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.js"></script>
167167

168168
<!-- Add reference to the Azure Maps Spatial IO module. -->
169169
<script src="https://atlas.microsoft.com/sdk/javascript/spatial/0/atlas-spatial.js"></script>

articles/azure-maps/map-create.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ In the following code, the first code block creates a map and sets the enter and
124124
<head>
125125

126126
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. -->
127-
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css" />
128-
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>
127+
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" type="text/css" />
128+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
129129

130130

131131
<script type="text/javascript">

articles/azure-maps/migrate-from-bing-maps-web-app.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ The following code shows how to load a map with the same view in Azure Maps alon
197197
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
198198

199199
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. -->
200-
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css" />
201-
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>
200+
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" type="text/css" />
201+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
202202

203203
<script type='text/javascript'>
204204
var map;
@@ -405,8 +405,8 @@ When using a Symbol layer, the data must be added to a data source, and the data
405405
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
406406

407407
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. -->
408-
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css" />
409-
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>
408+
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" type="text/css" />
409+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
410410

411411
<script type='text/javascript'>
412412
var map, datasource;
@@ -525,8 +525,8 @@ Symbol layers in Azure Maps support custom images as well, but the image needs t
525525
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
526526

527527
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. -->
528-
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css" />
529-
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>
528+
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" type="text/css" />
529+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
530530

531531
<script type='text/javascript'>
532532
var map, datasource;
@@ -935,8 +935,8 @@ GeoJSON data can be directly imported in Azure Maps using the `importDataFromUrl
935935
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
936936

937937
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. -->
938-
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css" />
939-
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>
938+
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" type="text/css" />
939+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
940940

941941
<script type='text/javascript'>
942942
var map, datasource;
@@ -1101,8 +1101,8 @@ In Azure Maps, load the GeoJSON data into a data source and connect the data sou
11011101
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
11021102

11031103
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. -->
1104-
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css" />
1105-
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>
1104+
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" type="text/css" />
1105+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
11061106

11071107
<script type='text/javascript'>
11081108
var map;
@@ -1312,8 +1312,8 @@ In Azure Maps, georeferenced images can be overlaid using the `atlas.layer.Image
13121312
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
13131313

13141314
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. -->
1315-
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css" />
1316-
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>
1315+
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" type="text/css" />
1316+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
13171317

13181318
<script type='text/javascript'>
13191319
var map;
@@ -1431,8 +1431,8 @@ In Azure Maps, GeoJSON is the main data format used in the web SDK, more spatial
14311431
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
14321432

14331433
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. -->
1434-
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css" />
1435-
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>
1434+
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" type="text/css" />
1435+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
14361436

14371437
<!-- Add reference to the Azure Maps Spatial IO module. -->
14381438
<script src="https://atlas.microsoft.com/sdk/javascript/spatial/0/atlas-spatial.js"></script>
@@ -1583,8 +1583,8 @@ In Azure Maps, the drawing tools module needs to be loaded by loading the JavaSc
15831583
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
15841584

15851585
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. -->
1586-
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css" />
1587-
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>
1586+
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" type="text/css" />
1587+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
15881588

15891589
<!-- Add references to the Azure Maps Map Drawing Tools JavaScript and CSS files. -->
15901590
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/drawing/0/atlas-drawing.min.css" type="text/css" />

0 commit comments

Comments
 (0)