poi信息类

interface PoiInfo {
    name?: string;
    uid?: string;
    address?: string;
    province?: string;
    city?: string;
    area?: string;
    street_id?: string;
    phoneNum?: string;
    postCode?: string;
    detail?: number;
    type?: POITYPE;
    location?: null | LatLng;
    hasCaterDetails?: boolean;
    isPano?: boolean;
    tag?: string;
    adCode?: number;
    poiDetailInfo?: null | PoiDetailInfo;
    direction?: string;
    distance?: number;
    parentPoiInfo?: null | ParentPoiInfo;
}

Properties

name?: string

poi名称

uid?: string

poi唯一标识 如果为isPano为true,可用此参数调用街景组件PanoramaService类 的requestPanoramaWithPoiUId方法检索街景数据

address?: string

poi地址信息

province?: string

poi所在省份

city?: string

poi所在城市

area?: string

poi所在行政区域

street_id?: string

poi对应的街景图id

phoneNum?: string

poi电话信息

postCode?: string

poi邮编

detail?: number

poi是否有详情页

type?: POITYPE

poi类型,0:普通点,1:公交站,2:公交线路,3:地铁站,4:地铁线路,

location?: null | LatLng

poi坐标, 当ePoiType为2或4时,pt 为空

hasCaterDetails?: boolean

poi点是否有美食类详情页面

isPano?: boolean

poi点附近是否有街景,可使用uid检索全景组件的全景数据

tag?: string

poi分类,如:"美食;中餐厅"

adCode?: number

行政区划编码

poiDetailInfo?: null | PoiDetailInfo

poi扩展信息

direction?: string

RGC请求结果中,周边POI和请求坐标点的方向关系,比如“内”,“西”,“南”等。 判断时,取结果中的第一个POI的该参数即可,如果返回为“内”则说明经纬度坐标该POI所属的面内 V5.2.0版本开放

distance?: number

RGC请求结果中,周边POI和请求坐标点的距离 distance = 0,说明经纬度位于POI所在的面内,但是也可能是POI的经纬度点 V5.2.0版本开放

parentPoiInfo?: null | ParentPoiInfo

RGC请求结果中,poi对应的主点poi信息(如,海底捞的主点为上地华联, 该字段则为上地华联的poi信息。如POI无主点,则无该字段为空)