From c7d5a5f0a710c892ae34c81881e22fabfd1d6904 Mon Sep 17 00:00:00 2001 From: Will Huang Date: Sat, 8 Nov 2025 00:53:14 +0800 Subject: [PATCH 1/2] first commit --- .../maps/data-plane/Route/stable/2025-01-01/route.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/maps/data-plane/Route/stable/2025-01-01/route.json b/specification/maps/data-plane/Route/stable/2025-01-01/route.json index 521cc7ca81f1..dd46f5d46a4c 100644 --- a/specification/maps/data-plane/Route/stable/2025-01-01/route.json +++ b/specification/maps/data-plane/Route/stable/2025-01-01/route.json @@ -2853,7 +2853,7 @@ "format": "date-time" }, "isSimplifiedPolygon": { - "description": "Use this to specify whether simplified polygons are required, reducing the number of vertices while preserving the overall shape.\n\n Currently, `isSimplifiedPolygon` only supports `true`. Support for high-definition polygons will be available soon. For more information and to try high-definition polygons, see [Post Route Range](/rest/api/maps/route/post-route-range?view=rest-maps-2024-07-01-preview&tabs=HTTP#inputrouterangeproperties) in the Route service public preview.", + "description": "Use this to specify if you need simplified polygons that reduces the number of polygon vertices while preserving the shape. The API returns low definition polygon by default.", "type": "boolean", "default": true }, From 6ae14432309622b8b9af470339e8ba7d10edda9c Mon Sep 17 00:00:00 2001 From: Will Huang Date: Tue, 11 Nov 2025 22:49:29 +0800 Subject: [PATCH 2/2] Update description for distanceBudget and timeBudget --- .../maps/data-plane/Route/stable/2025-01-01/route.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specification/maps/data-plane/Route/stable/2025-01-01/route.json b/specification/maps/data-plane/Route/stable/2025-01-01/route.json index dd46f5d46a4c..04b138252c50 100644 --- a/specification/maps/data-plane/Route/stable/2025-01-01/route.json +++ b/specification/maps/data-plane/Route/stable/2025-01-01/route.json @@ -2895,14 +2895,14 @@ "$ref": "#/definitions/RouteRangeVehicleSpec" }, "distanceBudgetInMeters": { - "description": "The distance budget specifies the maximum range in meters which can be traveled from the origin waypoint. It cannot be set when `timeBudgetInSec` is specified.\n\nThe maximum distance supported is 500,000 meters.\n\nExample: \"distanceBudgetInMeters\":5000", + "description": "The distance budget specifies the maximum range in meters which can be traveled from the origin waypoint. It cannot be set when `timeBudgetInSec` is specified.\n\nWhen `isSimplifiedPolygon` is false, the maximum distance supported is 90000 meters; otherwise, it is 500,000 meters.\n\nExample: \"distanceBudgetInMeters\":5000", "type": "number", "format": "float", "minimum": 0, "maximum": 500000 }, "timeBudgetInSec": { - "description": "The time budget specifies the maximum time in seconds available for travel, defining how far one can go within this time constraint from the origin waypoint. It cannot be set when `distanceBudgetInMeters` is specified.\n\nThe maximum time supported is 21,600 seconds.\n\nExample: \"timeBudgetInSec\":3600", + "description": "The time budget specifies the maximum time in seconds available for travel, defining how far one can go within this time constraint from the origin waypoint. It cannot be set when `distanceBudgetInMeters` is specified.\n\nWhen `isSimplifiedPolygon` is false, the maximum time supported is 3600 seconds; otherwise, it is 21,600 seconds.\n\nExample: \"timeBudgetInSec\":3600", "type": "number", "format": "float", "minimum": 0,