PointModel class
Class that represents the point
entity, which has its properties and methods.
Constructors
- PointModel({int drawOrder = 1, String altitudeMode = 'relativeToGround', required double lat, required double lng, required double altitude})
-
PointModel.fromMap(Map<
String, dynamic> map) -
Returns a PointModel from the given
map
.factory
Properties
- altitude ↔ double
-
Property that defines the point
altitude
.getter/setter pair - altitudeMode ↔ String
-
Property that defines the look at
altitude mode
.getter/setter pair - drawOrder ↔ int
-
Property that defines the point
draw order
.getter/setter pair - hashCode → int
-
The hash code for this object.
no setterinherited
- lat ↔ double
-
Property that defines the point
latitude
.getter/setter pair - lng ↔ double
-
Property that defines the point
longitude
.getter/setter pair - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- tag → String
-
Property that defines the point
tag
according to its current properties.no setter
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toMap(
) → Map< String, dynamic> - Returns a Map from the current PointModel.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited