maps_geo
Convert structured addresses and landmark names into precise latitude and longitude coordinates for location-based services and geographic data applications.
Instructions
将详细的结构化地址转换为经纬度坐标。支持对地标性名胜景区、建筑物名称解析为经纬度坐标
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | 待解析的结构化地址信息 | |
| city | No | 指定查询的城市 |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "待解析的结构化地址信息",
"type": "string"
},
"city": {
"description": "指定查询的城市",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}