maps_direction_walking_by_address
Plan a walking route between two addresses. Obtain distance, duration, and step-by-step directions for trips up to 100 km.
Instructions
Plans a walking 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.
Supports routes up to 100km.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| origin_city | No | ||
| origin_address | Yes | ||
| destination_city | No | ||
| destination_address | Yes |