zone property

String get zone

Returns the zone of the point.

Returns

  • The zone of the point as a string.

Implementation

String get zone {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Projection_MGRS',
    'getZone',
  );

  return resultString['result'];
}