maps_bicycling
Plan bicycle routes for commuting by considering overpasses, one-way streets, and road closures. Supports routes up to 500km with detailed geographic data.
Instructions
骑行路径规划用于规划骑行通勤方案,规划时会考虑天桥、单行线、封路等情况。最大支持 500km 的骑行路线规划
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"
}