northing property

double get northing

Northing coordinate.

Returns

  • (double) The northing value.

Implementation

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

  return resultString['result'];
}