interface NavigationPoint {
    isEntry: boolean;
    isExit: boolean;
    isPrimary: boolean;
    name: string;
    point: Point;
}

Properties

isEntry: boolean

Whether this navigation point is an entry point.

isExit: boolean

Whether this navigation point is an exit point.

isPrimary: boolean

Whether this is the primary navigation point.

name: string

The name of the navigation point.

point: Point

The location of the navigation point as a GeoJSON Point.

{"type": "Point", "coordinates": [-77.03653, 38.897676]}

]