Optional properties for a GPX feature.

interface GpxFeatureOptions {
    desc?: string;
    extensions?: Element[];
    id?: string;
    name?: string;
    time?: string;
}

Properties

desc?: string

The description of the feature.

extensions?: Element[]

Custom extensions for the GPX feature.

id?: string

Unique identifier for the feature.

name?: string

The name of the feature.

time?: string

Creation/modification timestamp for element (ISO 8601 UTC format).