Array of progress points along the route path.
Provides distance and time information at key points along the route. This field is included when extendedRouteRepresentations is requested.
extendedRouteRepresentations
const progress: RouteProgress = [ { pointIndex: 0, travelTimeInSeconds: 0, distanceInMeters: 0 }, { pointIndex: 50, travelTimeInSeconds: 120, distanceInMeters: 2500 }, { pointIndex: 100, travelTimeInSeconds: 300, distanceInMeters: 5000 }]; Copy
const progress: RouteProgress = [ { pointIndex: 0, travelTimeInSeconds: 0, distanceInMeters: 0 }, { pointIndex: 50, travelTimeInSeconds: 120, distanceInMeters: 2500 }, { pointIndex: 100, travelTimeInSeconds: 300, distanceInMeters: 5000 }];
Array of progress points along the route path.
Provides distance and time information at key points along the route. This field is included when
extendedRouteRepresentationsis requested.