POI地址服务
功能: 根据城市和地名获取坐标位置
资源URL:
GET:v1/poi
请求参数:
参数 | 类型 | 说明 |
---|---|---|
city | string | 城市名,如:北京 |
sug | string | 获取地址信息的关键词,如:五道口 |
lng | float | 城市纬度(未传city时必需) |
lat | float | 城市经度(未传city时必需) |
city参数(或者用lng和lat参数代替city)用来表示城市
curl -X GET
-H "Content-Type: application/x-www-form-urlencoded"
-H 'Authorization: Bearer domain|{access_token}'
'https://api.xiaojukeji.com/v1/poi?city=北京&sug=五道口'
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
displayname | string | 显示名称 |
address | string | 对应地址 |
lng | float | 地址纬度 |
lat | float | 地址经度 |
maptype | string | 坐标类型,默认soso |
返回示例:
成功:http status 200
失败:http status 非200
[
{
"displayname": "五道口-地铁站",
"address": "地铁13号线",
"lng": 116.337796,
"lat": 39.992909,
"maptype": "soso"
},
{
"displayname": "五道口购物中心",
"address": "海淀区成府路28号",
"lng": 116.339231,
"lat": 39.992682,
"maptype": "soso"
},
{
"displayname": "五道口购物广场",
"address": "大运村路北航西门对面",
"lng": 116.34025,
"lat": 39.985331,
"maptype": "soso"
},
{
"displayname": "五道口工人俱乐部电影院",
"address": "海淀区成府路23号",
"lng": 116.339365,
"lat": 39.993513,
"maptype": "soso"
},
{
"displayname": "五道口嘉园北门",
"address": "海淀区展春园西路3号院",
"lng": 116.34018,
"lat": 39.99072,
"maptype": "soso"
},
{
"displayname": "五道口服装市场(清华东路)",
"address": "海淀区学清路38号金码大厦B座1-4楼",
"lng": 116.35366,
"lat": 40.001569,
"maptype": "soso"
},
{
"displayname": "五道口嘉园",
"address": "展春园西路3号院,五道口地铁东南500米,五道口购物中心南侧。",
"lng": 116.3398,
"lat": 39.98981,
"maptype": "soso"
},
{
"displayname": "五道口",
"address": "北京市海淀区",
"lng": 116.337389,
"lat": 39.992747,
"maptype": "soso"
},
{
"displayname": "五道口国际食尚苑",
"address": "海淀区成府路29号五道口国际食尚苑",
"lng": 116.338709,
"lat": 39.99314,
"maptype": "soso"
},
{
"displayname": "五道口-公交车站",
"address": "",
"lng": 116.33478,
"lat": 39.992901,
"maptype": "soso"
}
]