coordinates property

Coordinates get coordinates

Gets the object coordinates in the main object coordinate system.

Implementation

Coordinates get coordinates {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapSceneObject',
    'getCoordinates',
  );

  return Coordinates.fromJson(resultString['result']);
}