逆地理编码
本文介绍通过阿里云OpenAPI SDK调用 周边查询-基础API-逆地理编码 的方法以及参数说明。
逆地理编码
将经纬度转换为详细结构化的地址,并可以返回地点周边的相关信息。
API定义
请求参数
参数名 | 含义及规则 | 是否必须 | 缺省值 | 参数样例 | |
longitude | 坐标点的经度 | 必填 | 无 | 116.310918 | |
latitude | 坐标点的经度 | 必填 | 无 | 39.989027 |
响应参数
参数名 | 类型 | 说明 | ||
success | bool | 接口调用是否成功 | ||
errorCode | integer | 错误码 | ||
errorMessage | string | 错误信息 | ||
data | list | 返回的地点数据列表 | ||
formattedAddress | string | 结构化的地址信息 | ||
country | string | 国家 | ||
province | string | 坐标点所在省名称 | ||
city | string | 坐标点所在城市名称 | ||
cityCode | string | 城市编码 | ||
district | string | 坐标点所在区 | ||
districtCode | string | 行政区域编码 | ||
townShip | string | 坐标点所在乡镇/街道 | ||
townCode | string | 乡镇街道编码 | ||
neighborhood | object | 社区信息 | ||
name | string | 社区名称 | ||
type | string | POI 类型 | ||
building | object | 楼信息 | ||
name | string | 建筑名称 | ||
type | string | POI 类型 | ||
streetNumber | object | 门牌信息 | ||
street | string | 街道名称 | ||
number | string | 门牌号 | ||
longitude | string | 坐标点的经度 | ||
latitude | string | 坐标点的纬度 | ||
direction | string | 方向 | ||
distanceMeter | string | 门牌地址到请求坐标的距离 | ||
businessAreas | list | 经纬度所属商圈 | ||
longitude | string | 商圈中心点的经度 | ||
latitude | string | 商圈中心点的纬度 | ||
name | string | 商圈名称 | ||
id | string | 商圈所在区域的编码 |
示例
响应示例
{
"data": {
"businessAreas": [
{
"latitude": "39.982490",
"name": "中关村",
"id": "110108",
"longitude": "116.314222"
},
{
"latitude": "39.976410",
"name": "万泉河",
"id": "110108",
"longitude": "116.303364"
},
{
"latitude": "39.996850",
"name": "西苑",
"id": "110108",
"longitude": "116.294214"
}
],
"country": "中国",
"districtCode": "110108",
"city": "",
"townCode": "110108015000",
"streetNumber": {
"number": "36号",
"street": "海淀路",
"latitude": "39.986542",
"distanceMeter": "289.832",
"longitude": "116.311943",
"direction": "南"
},
"cityCode": "010",
"townShip": "燕园街道",
"building": {},
"formattedAddress": "北京市海淀区燕园街道北京大学",
"province": "北京市",
"district": "海淀区",
"neighborhood": {
"name": "北京大学",
"type": "科教文化服务|学校|高等院校"
}
},
"success": true
}