coordinates property

Coordinates get coordinates

Returns the object's coordinates in the main object coordinate system.

Returns

Also see:

Implementation

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

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