表示一个换乘路段

interface TransitStep {
    distance: number;
    duration: number;
    name: string;
    wayPoints?: LatLng[];
    instructions?: string;
    vehicleInfo?: VehicleInfo;
    entrance?: RouteNode;
    exit?: RouteNode;
    stepType?: TransitRouteStepType;
    pathString?: string;
}

Hierarchy (view full)

Properties

distance: number

路段距离

duration: number

路段耗时

name: string

路段道路名称

wayPoints?: LatLng[]

路段所经过的地理坐标集合

instructions?: string

该路段换乘说明

vehicleInfo?: VehicleInfo

交通工具信息

entrance?: RouteNode

路段入口信息

exit?: RouteNode

路段出口信息

路段类型

pathString?: string

出于性能考虑,缓存path坐标点,当需要用到时再解析