touchGesturesStates property

int get touchGesturesStates

Get enabled touch gestures bitfield.

Returns

An int bitfield representing enabled TouchGestures.

See also:

Implementation

int get touchGesturesStates {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewPreferences',
    'getTouchGesturesStates',
    dependencyId: _mapPointerId,
  );

  return resultString['result'];
}
set touchGesturesStates (int enabledTouchGesturesBitfield)

Set enabled touch gestures via bitfield.

Parameters

See also:

Implementation

set touchGesturesStates(final int enabledTouchGesturesBitfield) {
  objectMethod(
    _pointerId,
    'MapViewPreferences',
    'setTouchGesturesStates',
    args: enabledTouchGesturesBitfield,
    dependencyId: _mapPointerId,
  );
}