GeoCoordinatesUpdate class

Represents geographical coordinates in 3D space.

Unlike GeoCoordinates, its members can be undefined, allowing for APIs that update only the specified parts of geo coordinates.

Annotations

Constructors

GeoCoordinatesUpdate(double? latitude, double? longitude)
Constructs a GeoCoordinatesUpdate from the provided latitude and longitude values.
factory
GeoCoordinatesUpdate.fromGeoCoordinates(GeoCoordinates coordinates)
Constructs a GeoCoordinatesUpdate from GeoCoordinates
factory
GeoCoordinatesUpdate.withAltitude(double? latitude, double? longitude, double? altitude)
Constructs a GeoCoordinatesUpdate from the provided latitude, longitude and alt values.
factory

Properties

altitude → double?
Optional altitude in meters.
final
hashCode → int
The hash code for this object.
no setter
latitude → double?
Optional latitude in degrees.
final
longitude → double?
Optional longitude in degrees.
final
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited

Methods

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

Operators

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