@squawk
    Preparing search index...

    Interface RouteLeg

    A single leg between two consecutive geographic points in a parsed route.

    interface RouteLeg {
        cumulativeDistanceNm: number;
        distanceNm: number;
        from: string;
        to: string;
    }
    Index

    Properties

    cumulativeDistanceNm: number

    Cumulative distance from the route start through the end of this leg in nautical miles.

    distanceNm: number

    Great-circle distance of this leg in nautical miles.

    from: string

    Identifier or raw token of the starting point.

    to: string

    Identifier or raw token of the ending point.