Geoposition constructor

Geoposition({
  1. required PlaneAngleUnitValue latitude,
  2. required PlaneAngleUnitValue longitude,
  3. LengthUnitValue? elevation,
  4. int? numberOfSatellitesInView,
  5. int? numberOfSatellitesInFix,
  6. String? positioningSystem,
})

Creates a Geoposition. The latitude and longitude are required according to the OMH definition.

Implementation

Geoposition({
  required this.latitude,
  required this.longitude,
  this.elevation,
  this.numberOfSatellitesInView,
  this.numberOfSatellitesInFix,
  this.positioningSystem,
});