Type alias RouteStep

RouteStep: {
    distance: number;
    distanceToGoal: number;
    from: Point;
    id: number;
    isFirst: boolean;
    isLast: boolean;
    to: Point;
}

Type declaration

  • distance: number
  • distanceToGoal: number
  • from: Point
  • id: number
  • isFirst: boolean
  • isLast: boolean
  • to: Point

Name

RouteStep

Description

A fragment of a route, described by the initial point from and the last point to of the fragment, and some information about the step within the route.

Generated using TypeDoc