Progress measurements tied to a specific coordinate on the route path.
Extends RouteProgress with a pointIndex that identifies the corresponding entry in the route's coordinate array.
pointIndex
Zero-based index of this point in the route's coordinate array.
progress
const points: RouteProgressPoint[] = [ { pointIndex: 0, travelTimeInSeconds: 0, distanceInMeters: 0 }, { pointIndex: 50, travelTimeInSeconds: 120, distanceInMeters: 2500 }, { pointIndex: 100, travelTimeInSeconds: 300, distanceInMeters: 5000 }]; Copy
const points: RouteProgressPoint[] = [ { pointIndex: 0, travelTimeInSeconds: 0, distanceInMeters: 0 }, { pointIndex: 50, travelTimeInSeconds: 120, distanceInMeters: 2500 }, { pointIndex: 100, travelTimeInSeconds: 300, distanceInMeters: 5000 }];
Progress measurements tied to a specific coordinate on the route path.
Extends RouteProgress with a
pointIndexthat identifies the corresponding entry in the route's coordinate array.