position property
Point3d
get
position
Retrieves the current position of the camera.
Returns
- A Point3d representing the current (x, y, z) position of the camera.
Implementation
Point3d get position {
final OperationResult resultString = objectMethod(
_pointerId,
'MapCamera',
'getPosition',
);
return Point3d.fromJson(resultString['result']);
}