maps_direction_driving
Plan driving routes between origin and destination coordinates for car commutes. Get detailed navigation data including travel paths and directions for efficient journey planning.
Instructions
驾车路径规划 API 可以根据用户起终点经纬度坐标规划以小客车、轿车通勤出行的方案,并且返回通勤方案的数据。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| origin | Yes | 出发点经度,纬度,坐标格式为:经度,纬度 | |
| destination | Yes | 目的地经度,纬度,坐标格式为:经度,纬度 |
Input Schema (JSON Schema)
{
"properties": {
"destination": {
"description": "目的地经度,纬度,坐标格式为:经度,纬度",
"type": "string"
},
"origin": {
"description": "出发点经度,纬度,坐标格式为:经度,纬度",
"type": "string"
}
},
"required": [
"origin",
"destination"
],
"type": "object"
}