Zum Inhalt springen
DeutschlandGPT

Google Maps

Search places, geocode addresses, get directions and distance calculations

Connect Google Maps to search places, geocode addresses, and calculate directions and distances from your workflows.

Authentication: API Key. Provide your Google Maps API key when connecting.

Actions

Search Places

Searches for places matching a text query (e.g. "coffee shops in Berlin").

InputRequiredDescription
QueryYesText search query
Location BiasNoLatitude/longitude to bias results toward
RadiusNoSearch radius in meters
OutputTypeDescription
placesarrayPlace objects with name, address, location, rating, placeId

Get Place Details

Returns detailed information about a specific place.

InputRequiredDescription
Place IDYesGoogle Maps place ID
OutputTypeDescription
placeobjectDetailed place info with name, address, phone, website, openingHours, rating, reviews

Geocode Address

Converts a human-readable address to geographic coordinates.

InputRequiredDescription
AddressYesThe address to geocode
OutputTypeDescription
locationobject{ lat, lng } coordinates
formattedAddressstringNormalized address as returned by Google
placeIdstringCorresponding place ID

Reverse Geocode

Converts geographic coordinates to a human-readable address.

InputRequiredDescription
LatitudeYesLatitude coordinate
LongitudeYesLongitude coordinate
OutputTypeDescription
formattedAddressstringHuman-readable address
addressComponentsarrayStructured address parts (street, city, country, etc.)

Get Directions

Returns turn-by-turn directions between two locations.

InputRequiredDescription
OriginYesStart location (address or lat/lng)
DestinationYesEnd location (address or lat/lng)
ModeNoTravel mode: driving (default), walking, bicycling, transit
WaypointsNoIntermediate stops
OutputTypeDescription
routesarrayRoute options with distance, duration, steps
distancestringTotal distance (human-readable)
durationstringTotal travel time (human-readable)

Compute Distance Matrix

Calculates travel time and distance between multiple origins and destinations.

InputRequiredDescription
OriginsYesList of origin addresses or coordinates
DestinationsYesList of destination addresses or coordinates
ModeNoTravel mode
OutputTypeDescription
matrixarrayMatrix of results, each with origin, destination, distance, duration
Was this page helpful?