Trk class

Trk represents a track - an ordered list of points describing a path.

Constructors

Trk({String? name, String? cmt, String? desc, String? src, List<Link>? links, int? number, String? type, Map<String, String>? extensions, List<Trkseg>? trksegs})
Construct a new Trk object.

Properties

cmt String?
GPS comment for track.
getter/setter pair
desc String?
User description of track.
getter/setter pair
extensions Map<String, String>
You can add extend GPX by adding your own elements from another schema here.
getter/setter pair
hashCode int
The hash code for this object.
no setteroverride
Links to external information about the track.
getter/setter pair
name String?
GPS name of track.
getter/setter pair
number int?
GPS track number.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
src String?
Source of data. Included to give user some idea of reliability and accuracy of data.
getter/setter pair
trksegs List<Trkseg>
A Track Segment holds a list of Track Points which are logically connected in order. To represent a single GPS track where GPS reception was lost, or the GPS receiver was turned off, start a new Track Segment for each continuous span of track data.
getter/setter pair
type String?
Type (classification) of track.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override