Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion googlemaps/directions.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"""Performs requests to the Google Maps Directions API."""

from googlemaps import convert
from googlemaps.exceptions import ApiError


def directions(client, origin, destination,
Expand Down Expand Up @@ -150,4 +151,15 @@ def directions(client, origin, destination,
if traffic_model:
params["traffic_model"] = traffic_model

return client._request("/maps/api/directions/json", params).get("routes", [])
# Make the API request
response = client._request("/maps/api/directions/json", params)

# Check if the API request was successful
if response.get("status") == "OK":
return response.get("routes", [])
elif response.get("error_message"):
# Handle specific error message returned by the API
raise ApiError(response.get("error_message"))
else:
# Handle generic API error
raise ApiError("Unknown error occurred during API request")