SERVICE & TOOLS
Google Maps
Google Maps — geocoding, directions, place search, distance matrix
7 available tools
maps_ directions
Get route directions between two points. Args: origin: Starting address or coordinates, e.g. "Tiananmen Square, Beijing" or "39.9042,116.4074" destination: Destination address or coordinates,…
maps_ geocode
Convert address to geographic coordinates (geocoding). Args: address: Address to geocode, e.g. "Tiananmen Square, Beijing" or "1600 Amphitheatre Parkway, Mountain View, CA" Returns: Result c…
maps_ distance_ matrix
Calculate travel distance and time between multiple origins and destinations. Args: origins: List of starting addresses or coordinates, e.g. ["Beijing", "Shanghai"] or ["39.9042,116.4074"] de…
maps_ elevation
Args: locations: 位置坐标列表,每个位置包含 latitude 和 longitude, 例如 [{"latitude": 39.9042, "longitude": 116.4074}]
maps_ place_ details
Args: place_id: 地点ID,可从 maps_search_places 或 maps_geocode 结果中获取
maps_ reverse_ geocode
Args: latitude: 纬度,例如 39.9042 longitude: 经度,例如 116.4074
maps_ search_ places
Search places using Google Places API. Args: query: Search query, e.g. "coffee shop" or "restaurant" location_latitude: Optional, latitude of search center point location_longitude: Optio…