反 Geo Code 结果

interface ReverseGeoCodeResult {
    businessCircle?: string;
    address?: string;
    addressDetail?: null | AddressComponent;
    location?: null | LatLng;
    cityCode?: number;
    poiList?: PoiInfo[];
    sematicDescription?: string;
    poiRegionsInfoList?: PoiRegionsInfo[];
    roadInfoList?: RoadInfo[];
    adcode?: number;
    error?: ERRORNO;
    status?: number;
}

Hierarchy (view full)

Properties

businessCircle?: string

商圈名称 如 "人民大学,中关村,苏州街",一个坐标检索最多返回3个

address?: string

地址名称

addressDetail?: null | AddressComponent

层次化地址信息

location?: null | LatLng

地址坐标

cityCode?: number

百度定义的城市id

poiList?: PoiInfo[]

地址周边Poi信息,只有在type为MK_REVERSEGEOCODE时才有效

sematicDescription?: string

当前位置结合POI的语义化结果描述

poiRegionsInfoList?: PoiRegionsInfo[]

请求中的坐标与POI对应的区域面(AOI)的归属关系信息 以数组形式返回

roadInfoList?: RoadInfo[]

召回坐标周围最近的3条道路信息

adcode?: number

行政区域编码

error?: ERRORNO

检索结果错误码, 各错误值见ERRORNO

status?: number