y property

double get y

Returns the y coordinate of the point.

Returns

  • The y coordinate of the point as a double.

Implementation

double get y {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'Projection_UTM',
    'getY',
  );

  return resultString['result'];
}