reverse_geocode
Convert geographic coordinates into place names and addresses. Look up the nearest location for given latitude and longitude values to retrieve display names, structured addresses, and bounding box information.
Instructions
Reverse geocode coordinates to a place name and address.
Looks up the nearest place for the given coordinates and returns
the display name, structured address, and bounding box.
Args:
lat: Latitude (-90 to 90)
lon: Longitude (-180 to 180)
zoom: Detail level 0-18 (18=building, 10=city, 3=country, default 18)
language: Preferred response language (e.g. "en", "de", "fr")
output_mode: "json" (default) or "text"
Returns:
Place name, address components, and bounding box
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | ||
| lon | Yes | ||
| zoom | No | ||
| language | No | ||
| output_mode | No | json |