reverse-geocode
Convert latitude and longitude coordinates into a readable address for geolocation mapping and analysis.
Instructions
Convert coordinates to an address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
latitude | Yes | The latitude | |
longitude | Yes | The longitude |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"latitude": {
"description": "The latitude",
"type": "number"
},
"longitude": {
"description": "The longitude",
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
}