easting property

int get easting

Easting coordinate.

Returns

  • (int) The easting value.

Implementation

int get easting {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Projection_MGRS',
    'getEasting',
  );

  return resultString['result'];
}