y property

double get y

Y coordinate (meters).

Returns

  • (double) The y coordinate in meters.

Implementation

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

  return resultString['result'];
}