isFollowingPositionTouchHandlerModified method

bool isFollowingPositionTouchHandlerModified()

Returns true if the camera is following the current real/simulated position from a fixed relative position adjusted by user input and false otherwise.

Returns

  • True if the follow position mode has been manually adjusted by the user, false if it remains in its default state.

Throws

  • An exception if it fails.

Implementation

bool isFollowingPositionTouchHandlerModified() {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapView',
    'isFollowingPositionTouchHandlerModified',
  );

  return resultString['result'];
}