coordinates property
Returns the object's coordinates in the main object coordinate system.
Returns
- (Coordinates) The object's coordinates.
Also see:
- PositionService — Manage device position.
Implementation
Coordinates get coordinates {
final OperationResult resultString = objectMethod(
_pointerId,
'MapSceneObject',
'getCoordinates',
);
return Coordinates.fromJson(resultString['result']);
}