maps_bicycling_by_address
Plan a bicycle route between two addresses. Get distance, duration, and turn-by-turn instructions with consideration of bridges and road closures.
Instructions
Plans a bicycle route between two locations using addresses. Unless you have a specific reason to use coordinates, it's recommended to use this tool.
Args:
origin_address (str): Starting point address (e.g. "北京市朝阳区阜通东大街6号")
destination_address (str): Ending point address (e.g. "北京市海淀区上地十街10号")
origin_city (Optional[str]): Optional city name for the origin address to improve geocoding accuracy
destination_city (Optional[str]): Optional city name for the destination address to improve geocoding accuracy
Returns:
Dict[str, Any]: Route information including distance, duration, and turn-by-turn instructions.
Considers bridges, one-way streets, and road closures. Supports routes up to 500km.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| origin_city | No | ||
| origin_address | Yes | ||
| destination_city | No | ||
| destination_address | Yes |