MGRSProjection constructor

MGRSProjection({
  1. required double easting,
  2. required double northing,
  3. required String zone,
  4. required String letters,
})

Creates an MGRSProjection.

Parameters

  • easting: (double) Easting coordinate.
  • northing: (double) Northing coordinate.
  • zone: (String) Grid zone designator.
  • letters: (String) 100k grid square letters.

Implementation

factory MGRSProjection({
  required double easting,
  required double northing,
  required String zone,
  required String letters,
}) {
  return MGRSProjection._create(easting, northing, zone, letters);
}