northing property

int get northing

Northing coordinate.

Returns

  • (int) The northing value.

Implementation

int get northing {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Projection_MGRS',
    'getNorthing',
  );

  return resultString['result'];
}