northing property

int get northing

Returns the northing coordinate of the point.

Returns

  • The northing coordinate of the point as an integer.

Implementation

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

  return resultString['result'];
}