northing property

double get northing

Northing (vertical) coordinate.

Returns

  • (double) The northing value for this projection.

Implementation

double get northing {
  final OperationResult result = objectMethod(
    _pointerId,
    'Projection_GK',
    'getNorthing',
  );

  return result['result'];
}