MGRSProjection constructor

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

Creates a new MGRSProjection

Implementation

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