Provide turn-by-turn navigation directions and an interactive route map between two locations.
This skill provides turn-by-turn navigation directions and an interactive map between an origin and a destination, powered by OpenStreetMap and OSRM — no API key required.
Use this skill when the user asks for:
Example prompts:
When the user requests navigation or directions:
Extract the origin, destination, and optionally the transport mode from the user's message.
driving if not specified.driving, walking, cyclingCall the run_js tool with:
index.html{
"origin": "<origin location as a place name or address>",
"destination": "<destination location as a place name or address>",
"mode": "<driving|walking|cycling>"
}
Do not call run_intent or any other tool. Do not ask the user for coordinates — use place names directly.
Present the returned text directions clearly, and let the interactive map webview render automatically.