easting property

double get easting

Retrieves the easting of the point.

Returns

  • The easting of the point as a double.

Implementation

double get easting {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Projection_BNG',
    'getEasting',
  );

  return resultString['result'];
}