zone property

int get zone

UTM zone number.

Returns

  • (int) The zone value for this UTM projection.

Implementation

int get zone {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Projection_UTM',
    'getZone',
  );

  return resultString['result'];
}