maps_reverse_geocode
Convert latitude and longitude coordinates into precise addresses using Google Maps API integration, enabling accurate location identification.
Instructions
將座標轉換為地址
Input Schema
Name | Required | Description | Default |
---|---|---|---|
latitude | Yes | 緯度 | |
longitude | Yes | 經度 |
Input Schema (JSON Schema)
{
"properties": {
"latitude": {
"description": "緯度",
"type": "number"
},
"longitude": {
"description": "經度",
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
}