maps_geocode
Convert addresses or landmark names into precise geographic coordinates using the MCP Google Map Server, enabling accurate location-based applications and services.
Instructions
將地址轉換為座標
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | 要轉換的地址或地標名稱 |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "要轉換的地址或地標名稱",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}