公交路线规划结果点信息

interface TransitResultNode {
    cityId?: number;
    cityName?: null | string;
    location?: null | LatLng;
    searchWord?: null | string;
}

Properties

cityId?: number

城市编号

cityName?: null | string

城市名

location?: null | LatLng

坐标

searchWord?: null | string

检索时关键字(在检索词模糊,返回建议列表时才有。有路线结果时,该字段为空)