TAKPacket-SDK — TypeScript - v0.7.0
    Preparing search index...

    Interface Route

    Named route with ordered waypoints and control points.

    interface Route {
        direction?: number;
        links?: RouteLink[];
        method?: number;
        prefix?: string;
        strokeWeightX10?: number;
        truncated?: boolean;
    }
    Index

    Properties

    direction?: number

    Route.Direction: 0=Unspecified, 1=Infil, 2=Exfil

    links?: RouteLink[]

    Ordered waypoints and control points.

    method?: number

    Route.Method: 0=Unspecified, 1=Driving, ..., 5=Watercraft

    prefix?: string

    Waypoint-label prefix (e.g. "CP").

    strokeWeightX10?: number

    Route line weight ×10 (e.g. 30 = 3.0).

    truncated?: boolean

    True when the waypoint list was capped at the wire limit.