GeoXml class
GPX documents contain a metadata header, followed by waypoints, routes, and tracks. You can add your own elements to the extensions section of the GPX document.
- Implementers
Constructors
- GeoXml()
Properties
- creator ↔ String
-
The name or URL of the software that created your GPX document. This
allows others to inform the creator of a GPX instance document that fails
to validate.
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
- metadata ↔ Metadata?
-
Metadata about the file.
getter/setter pair
-
polygons
↔ List<
Polygon> -
getter/setter pair
-
rtes
↔ List<
Rte> -
A list of routes.
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
-
styles
↔ List<
GeoStyle> -
getter/setter pair
-
trks
↔ List<
Trk> -
A list of tracks.
getter/setter pair
- version ↔ String
-
Version number of your GPX document.
getter/setter pair
-
wpts
↔ List<
Wpt> -
A list of waypoints.
getter/setter pair
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toGpxString(
{bool pretty = false}) → String -
toKmlString(
{bool pretty = false, AltitudeMode altitudeMode = AltitudeMode.absolute}) → String -
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override
Static Methods
-
fromGpxStream(
Stream< String> stream) → Future<GeoXml> -
fromGpxString(
String str) → Future< GeoXml> -
fromKmlStream(
Stream< String> stream) → Future<GeoXml> -
fromKmlString(
String str) → Future< GeoXml>