get_route_directions
Get turn-by-turn navigation directions between two locations with distance, duration, and route geometry. Supports car, bike, and foot travel modes.
Instructions
Calculate detailed route directions between two geographic points.
This tool provides comprehensive turn-by-turn navigation directions between any two locations on Earth. It calculates the optimal route based on the specified transportation mode and returns detailed information about distance, duration, maneuvers, and the route geometry. Perfect for trip planning, navigation assistance, and commute analysis.
Args: from_latitude: Starting point latitude (decimal degrees) from_longitude: Starting point longitude (decimal degrees) to_latitude: Destination latitude (decimal degrees) to_longitude: Destination longitude (decimal degrees) mode: Transportation mode - options include: - "car" (default): Standard automobile routing - "bike": Bicycle-friendly routes - "foot": Pedestrian walking paths
Returns: Comprehensive routing information including: - Summary with total distance (meters) and duration (seconds) - Turn-by-turn directions with individual segments - Route geometry for mapping visualization - Waypoint information
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | car | |
| to_latitude | Yes | ||
| to_longitude | Yes | ||
| from_latitude | Yes | ||
| from_longitude | Yes |