gis-tools-ts - v0.6.0
    Preparing search index...

    Interface GPX

    Represents the root GPX document.

    interface GPX {
        creator: string;
        extensions?: GPXExtensions;
        metadata?: GPXMetadata;
        rte?: GPXRoute[];
        trk?: GPXTrack[];
        version: "1.1";
        wpt?: GPXWaypoint[];
    }
    Index

    Properties

    creator: string

    Name or URL of the software that created the GPX document

    extensions?: GPXExtensions

    Custom extensions for additional data

    metadata?: GPXMetadata

    Optional metadata about the file

    rte?: GPXRoute[]

    Array of routes

    trk?: GPXTrack[]

    Array of tracks

    version: "1.1"

    Fixed GPX version

    wpt?: GPXWaypoint[]

    Array of waypoints