easting property

int get easting

Returns the easting coordinate of the point.

Returns

  • The easting coordinate of the point as an integer.

Implementation

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

  return resultString['result'];
}