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

  return result['result'];
}