northing property

double get northing

Retrieves the northing of the point.

Returns

  • The northing of the point as a double.

Implementation

double get northing {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Projection_BNG',
    'getNorthing',
  );

  return resultString['result'];
}