TomTom Maps for JavaScript
    Preparing search index...

    Type Alias RouteProgressPoint

    Progress information for a specific point along the route.

    Contains cumulative distance and time measurements from the route start to this point.

    type RouteProgressPoint = {
        distanceInMeters?: number;
        pointIndex: number;
        travelTimeInSeconds?: number;
    }
    Index

    Properties

    distanceInMeters?: number

    Cumulative distance in meters from the route start to this point.

    pointIndex: number

    Zero-based index of this point in the route's coordinate array.

    travelTimeInSeconds?: number

    Cumulative travel time in seconds from the route start to this point.