MultiFingerGesture
        Inherits: IntFlag
Flags to enable/disable certain multi-finger gestures on the map.
Properties
- 
          ALL–All multi-finger gestures defined in this enum. 
- 
          NONE–No multi-finger gesture. 
- 
          PINCH_MOVE–Pinch move gesture, which allows moving the map by dragging with two fingers. 
- 
          PINCH_ZOOM–Pinch zoom gesture, which allows zooming in and out by pinching with two fingers. 
- 
          ROTATE–Rotate gesture, which allows rotating the map by twisting two fingers. 
Properties#
ALL = 1 << 0 | 1 << 1 | 1 << 2
  
      class-attribute
      instance-attribute
  
#
    All multi-finger gestures defined in this enum.
NONE = 0
  
      class-attribute
      instance-attribute
  
#
    No multi-finger gesture.
PINCH_MOVE = 1 << 0
  
      class-attribute
      instance-attribute
  
#
    Pinch move gesture, which allows moving the map by dragging with two fingers.
PINCH_ZOOM = 1 << 1
  
      class-attribute
      instance-attribute
  
#
    Pinch zoom gesture, which allows zooming in and out by pinching with two fingers.
ROTATE = 1 << 2
  
      class-attribute
      instance-attribute
  
#
    Rotate gesture, which allows rotating the map by twisting two fingers.