行政区划查询
本 API 仅支持中国大陆区域的近似搜索,存在一定误差,对于 C 端使用场景一般能满足。
API
bash
curl "https://singer.caiyunhub.com/v3/cartography/reverse_admins?longitude={longitude}&latitude={latitude}&token={token}"
请求参数:
Field | Type | Description |
---|---|---|
longitude | float | 经度 |
latitude | float | 纬度 |
json
{
"data": [
{
"adcode": "110000",
"name": "北京市"
},
{
"adcode": "110100",
"name": "北京城区"
},
{
"adcode": "110102",
"name": "西城区"
}
]
}