描述一个步行路段

interface WalkingStep {
    distance: number;
    duration: number;
    name: string;
    direction: number;
    entrance: RouteNode;
    wayPoints: LatLng[];
    exit: RouteNode;
    pathString: string;
    entranceInstructions: string;
    exitInstructions: string;
    instructions: string;
}

Hierarchy (view full)

Properties

distance: number

路段距离

duration: number

路段耗时

name: string

路段道路名称

direction: number

该路段起点方向值 单位:度。 正北方向为0度,顺时针

entrance: RouteNode

路段起点信息

wayPoints: LatLng[]

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

exit: RouteNode

路段终点信息

pathString: string

pathString 需要时可以解析

entranceInstructions: string

路段入口提示信息

exitInstructions: string

路段出口指示信息

instructions: string

路段整体指示信息