isTrackObjectFollowingMapRotation property

bool get isTrackObjectFollowingMapRotation

Check if position tracking object rotation follows map rotation.

Returns

  • True if the position tracking object rotation follows map rotation, false otherwise.

Throws

  • An exception if it fails.

Implementation

bool get isTrackObjectFollowingMapRotation {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'FollowPositionPreferences',
    'isTrackObjectFollowingMapRotation',
  );

  return resultString['result'];
}