@squawk
    Preparing search index...

    Interface CoordinateRouteElement

    A latitude/longitude coordinate specified directly in the route string.

    interface CoordinateRouteElement {
        lat: number;
        lon: number;
        raw: string;
        type: "coordinate";
    }
    Index

    Properties

    Properties

    lat: number

    Latitude in decimal degrees, positive north.

    lon: number

    Longitude in decimal degrees, positive east.

    raw: string

    Raw token from the route string.

    type: "coordinate"

    Discriminant for coordinate elements.