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 result = objectMethod(
    _pointerId,
    'Projection_GK',
    'getEasting',
  );

  return result['result'];
}