maps_direction_walking
Plan walking routes between two coordinates within 100km, providing detailed walking commute data and directions for pedestrian navigation.
Instructions
步行路径规划 API 可以根据输入起点终点经纬度坐标规划100km 以内的步行通勤方案,并且返回通勤方案的数据
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"
}