Interface Route

Route. An ordered list of waypoints representing a series of turn points leading to a destination.

interface Route {
    cmt?: string;
    desc?: string;
    extensions?: any;
    link?: Link[];
    name?: string;
    number?: number;
    rtept?: Waypoint[];
    src?: string;
    type?: string;
}

Properties

cmt?: string

GPS comment for route.

desc?: string

Text description of route for user.

extensions?: any

Extensions.

link?: Link[]

Links to external information about the route.

name?: string

GPS name of route.

number?: number

GPS route number.

rtept?: Waypoint[]

A list of route points.

src?: string

Source of data.

type?: string

Type (classification) of route.