Track
data class Track(val name: String? = null, val comment: String? = null, val description: String? = null, val source: String? = null, val link: Link? = null, val number: Int? = null, val type: String? = null, val segments: List<TrackSegment> = listOf(), val extensions: Element? = null)(source)
Represents a GPX track (trk element), an ordered list of points describing a path.
A track is made up of one or more track segments.
See trkType.
Constructors
Properties
Link copied to clipboard
A comment or description for the track.
Link copied to clipboard
A user-supplied description of the track.
Link copied to clipboard
Extension schema elements.
Link copied to clipboard
A URL link associated with the track.
Link copied to clipboard
The GPS name of the track.
Link copied to clipboard
A GPS track number.
Link copied to clipboard
A list of track segments that make up the track.
Link copied to clipboard
The source of the data.
Link copied to clipboard
The type of activity for the track (e.g., "cycling", "running").