Reverse_Geocoding
Convert geographic coordinates into human-readable addresses using specified language. Provides location details for precise mapping and navigation needs.
Instructions
Obtain address for location.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | The two-letter language code in which to return results (ISO 639-1) | |
location | Yes | The location for which you wish to obtain the human-readable address |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"description": "The two-letter language code in which to return results (ISO 639-1)",
"type": "string"
},
"location": {
"description": "The location for which you wish to obtain the human-readable address",
"type": "string"
}
},
"required": [
"location"
],
"type": "object"
}