Signal K
    Preparing search index...

    A Geo JSON feature object which describes the route between the waypoints

    interface Feature {
        geometry: LineString;
        properties: null | { [k: string]: unknown };
        id?: { [k: string]: unknown };
        type?: "Feature";
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    geometry: LineString
    properties: null | { [k: string]: unknown }

    Additional data of any type

    id?: { [k: string]: unknown }
    type?: "Feature"