Skip to content

Commit a82b56f

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into saveandcommit
2 parents 55d2d56 + 66dc85a commit a82b56f

File tree

86 files changed

+875
-1062
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+875
-1062
lines changed

articles/azure-app-configuration/howto-variant-feature-flags.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,4 @@ In this tutorial, you create a web app named _Quote of the Day_. When the app is
7474

7575
2. Continue to the following instructions to use the variant feature flag in your application for the language or platform you're using.
7676
* [ASP.NET Core](./howto-variant-feature-flags-aspnet-core.md)
77+
* [Python](./howto-variant-feature-flags-python.md)

articles/azure-maps/itinerary-optimization-service.md

Lines changed: 37 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -78,31 +78,47 @@ Matrix size = 5 origins x 5 destinations = 25
7878
The Route Matrix POST request:
7979

8080
```html
81-
https://atlas.microsoft.com/route/matrix/json?api-version=1.0&routeType=shortest
81+
https://atlas.microsoft.com/route/matrix?api-version=2025-01-01&routeType=shortest&subscription-key={Your-Azure-Maps-Subscription-key}
8282
```
8383

8484
```json
8585
{
86-
"origins": {
87-
"type": "MultiPoint",
88-
"coordinates": [
89-
[4.85106, 52.36006], //restaurant or depot
90-
[4.85056, 52.36187], //delivery location 1
91-
[4.85003, 52.36241], //delivery location 2
92-
[4.42937, 52.50931], //delivery location 3
93-
[4.42940, 52.50843] //delivery location 4
94-
]
95-
},
96-
"destinations": {
97-
"type": "MultiPoint",
98-
[4.85106, 52.36006], //restaurant or depot
99-
[4.85056, 52.36187], //delivery location 1
100-
[4.85003, 52.36241], //delivery location 2
101-
[4.42937, 52.50931], //delivery location 3
102-
[4.42940, 52.50843] //delivery location 4
103-
]
104-
}
105-
}
86+
"type": "FeatureCollection",
87+
"features": [
88+
{
89+
"type": "Feature",
90+
"geometry": {
91+
"type": "MultiPoint",
92+
"coordinates": [
93+
[4.85106, 52.36006], //restaurant or depot
94+
[4.85056, 52.36187], //delivery location 1
95+
[4.85003, 52.36241], //delivery location 2
96+
[4.42937, 52.50931], //delivery location 3
97+
[4.42940, 52.50843] //delivery location 4
98+
]
99+
},
100+
"properties": {
101+
"pointType": "origins"
102+
}
103+
},
104+
{
105+
"type": "Feature",
106+
"geometry": {
107+
"type": "MultiPoint",
108+
"coordinates": [
109+
[4.85106, 52.36006], //restaurant or depot
110+
[4.85056, 52.36187], //delivery location 1
111+
[4.85003, 52.36241], //delivery location 2
112+
[4.42937, 52.50931], //delivery location 3
113+
[4.42940, 52.50843] //delivery location 4
114+
]
115+
},
116+
"properties": {
117+
"pointType": "destinations"
118+
}
119+
}
120+
]
121+
}
106122
```
107123

108124
The Route Matrix response returns a 5x5 multi-dimensional array where each row represents the origins and columns represent the destinations. Use the field `travelTimeInSeconds` to get the time cost for each location pair. The time unit should be consistent across the solution. Once the preprocessing stage is complete, the order, depot, fleet info and the cost matrix, are sent over and imported to the cuOpt Server via API calls.

articles/azure-maps/migrate-calculate-route.md

Lines changed: 33 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -69,42 +69,44 @@ http://dev.virtualearth.net/REST/V1/Routes/driving?wp.0=47.610173,-122.204171&wp
6969
Azure Maps _Route Directions_ API POST request:
7070

7171
``` http
72-
https://atlas.microsoft.com/route/directions?api-version=2023-10-01-preview&subscription-key={Your-Azure-Maps-Subscription-key}
72+
https://atlas.microsoft.com/route/directions?api-version=2025-01-01&subscription-key={Your-Azure-Maps-Subscription-key}
7373
```
7474

7575
Included in the body of the request:
7676

7777
```json
78-
{
79-
  "type": "FeatureCollection",`
80-
  "features": [
81-
    {
82-
      "type": "Feature",
83-
      "geometry": {
84-
        "coordinates": [
85-
         -122.204171,47.610173
86-
        ],
87-
        "type": "Point"
88-
      },
89-
      "properties": {
90-
        "pointIndex": 0,
91-
        "pointType": "waypoint"
92-
      }
93-
    },
94-
    {
95-
      "type": "Feature",
96-
      "geometry": {
97-
        "coordinates": [
98-
          -122.204171,47.612440
99-
        ],
100-
        "type": "Point"
101-
      },
102-
      "properties": {
103-
        "pointIndex": 1,
104-
        "pointType": "waypoint"
105-
      }
106-
    }
107-
  ]
78+
{
79+
"type": "FeatureCollection",
80+
"features": [
81+
{
82+
"type": "Feature",
83+
"geometry": {
84+
"coordinates": [
85+
-122.204171,
86+
47.610173
87+
],
88+
"type": "Point"
89+
},
90+
"properties": {
91+
"pointIndex": 0,
92+
"pointType": "waypoint"
93+
}
94+
},
95+
{
96+
"type": "Feature",
97+
"geometry": {
98+
"coordinates": [
99+
-122.204171,
100+
47.612440
101+
],
102+
"type": "Point"
103+
},
104+
"properties": {
105+
"pointIndex": 1,
106+
"pointType": "Waypoint"
107+
}
108+
}
109+
]
108110
}
109111
```
110112

articles/azure-maps/migrate-calculate-truck-route.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Included in the body of the request:
9494
Azure Maps _Route Directions_ API POST request:
9595

9696
``` http
97-
https://atlas.microsoft.com/route/directions?api-version=2023-10-01-preview&subscription-key={Your-Azure-Maps-Subscription-key}
97+
https://atlas.microsoft.com/route/directions?api-version=2025-01-01&subscription-key={Your-Azure-Maps-Subscription-key}
9898
```
9999

100100
Included in the body of the request:

articles/azure-maps/migrate-help-using-copilot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ Step 6. Create and add a SymbolLayer to the map.
208208

209209
Step 7. Create and add a LineLayer to the map.
210210

211-
Step 8. Utilize the Route POST API: <https://atlas.microsoft.com/route/directions?api-version=2023-10-01-preview&subscription-key=${subscriptionKey}> to find the route between the start and end points. Add the GeoJSON response to the DataSource and adjust the map's camera based on the bounding box of the response.
211+
Step 8. Utilize the Route POST API: <https://atlas.microsoft.com/route/directions?api-version=2025-01-01&subscription-key=${subscriptionKey}> to find the route between the start and end points. Add the GeoJSON response to the DataSource and adjust the map's camera based on the bounding box of the response.
212212

213213
Example request body:
214214

@@ -335,7 +335,7 @@ GitHub Copilot can create the following code snippet to provide an interface for
335335
336336
function getRoute(startCoordinates, endCoordinates) {
337337
fetch(
338-
`https://atlas.microsoft.com/route/directions?api-version=2023-10-01-preview&subscription-key=${subscriptionKey}`,
338+
`https://atlas.microsoft.com/route/directions?api-version=2025-01-01&subscription-key=${subscriptionKey}`,
339339
{
340340
method: "POST",
341341
headers: {

articles/azure-maps/rest-api-azure-maps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ Prerelease version of an Azure Maps service. Preview releases contain new functi
7575

7676
<!--- 2024-07-01-preview is the latest preview release of the Route service,
7777
currently the only Azure Maps service in Preview -------------------------->
78-
[Route-2024-07-01-preview]: /rest/api/maps/route?view=rest-maps-2024-07-01-preview
78+
[Route-2024-07-01-preview]: /rest/api/maps/route?view=rest-maps-2024-07-01-preview

articles/azure-maps/supported-languages.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ Azure Maps have been localized in variety languages across its services. The fol
9292
<sup>1</sup> Neutral Ground Truth (Local) - Official languages for all regions in local scripts if available<br>
9393
<sup>2</sup> Neutral Ground Truth (Latin) - Latin exonyms are used if available
9494

95-
## Routing v2 services (preview) supported languages
95+
## Routing services supported languages
9696

97-
Azure Maps have been localized in variety languages across its services. The following table provides the supported language codes for the routing v2 services. The routing column in the following table includes routes for driving and walking.
97+
Azure Maps have been localized in variety languages across its services. The following table provides the supported language codes for the latest version of the Azure Maps [Route] service. The routing column in the following table includes routes for driving and walking.
9898

9999
| Culture | Language | Routing | Truck Routing |
100100
|----------------|--------------------------------------------|:-------:|:-------------:|
@@ -266,3 +266,5 @@ The following table provides supported views.
266266
| YE | Yemen (Arabic View) || |
267267
| Auto | Automatically detect based on request |||
268268
| Unified | Unified View (Others) |||
269+
270+
[Route]: /rest/api/maps/route

articles/azure-maps/tutorial-snap-to-road.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ The code in this notebook cell reads raw GPS data from the data file in lakehous
142142
import json
143143

144144
az_maps_subkey = ""
145-
az_maps_snaproads_url = "https://atlas.microsoft.com/route/snapToRoads?api-version=2024-07-01-preview&subscription-key=" + az_maps_subkey
145+
az_maps_snaproads_url = "https://atlas.microsoft.com/route/snapToRoads?api-version=2025-01-01&subscription-key=" + az_maps_subkey
146146

147147
# Function to process snap to road for each given trip
148148
def process_route(df, outputFilePath):

articles/cost-management-billing/dataset-schema/cost-usage-details-ea.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: Enterprise Agreement cost and usage details file schema
33
description: Learn about the data fields available in the Enterprise Agreement cost and usage details file.
4-
author: bandersmsft
4+
author: jojopm
55
ms.reviewer: jojoh
66
ms.service: cost-management-billing
77
ms.subservice: common
88
ms.topic: reference
99
ms.date: 01/24/2025
10-
ms.author: banders
10+
ms.author: jojoh
1111
---
1212

1313
# Enterprise Agreement cost and usage details file schema

articles/cost-management-billing/dataset-schema/cost-usage-details-focus.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: FOCUS cost and usage details file schema
33
description: Learn about the data fields available in the FOCUS cost and usage details file.
4-
author: bandersmsft
5-
ms.reviewer: jojo
4+
author: jojopm
5+
ms.reviewer: jojoh
66
ms.service: cost-management-billing
77
ms.subservice: common
88
ms.topic: reference
99
ms.date: 01/24/2025
10-
ms.author: banders
10+
ms.author: jojoh
1111
---
1212

1313
# FOCUS cost and usage details file schema

0 commit comments

Comments
 (0)