Skip to content

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 #

All multi-finger gestures defined in this enum.

NONE = 0 #

No multi-finger gesture.

PINCH_MOVE = 1 << 0 #

Pinch move gesture, which allows moving the map by dragging with two fingers.

PINCH_ZOOM = 1 << 1 #

Pinch zoom gesture, which allows zooming in and out by pinching with two fingers.

ROTATE = 1 << 2 #

Rotate gesture, which allows rotating the map by twisting two fingers.