GLMapViewGestures
Objective-C
enum GLMapViewGestures : NSUInteger {}
Swift
struct GLMapViewGestures : OptionSet, @unchecked Sendable
Gestures handled by GLMapView
-
Gesture recognition disabled
Declaration
Objective-C
GLMapViewGesture_None = 0
-
Pan gesture
Declaration
Objective-C
GLMapViewGesture_Pan = 1
Swift
static var pan: GLMapViewGestures { get }
-
Zoom gesture
Declaration
Objective-C
GLMapViewGesture_Zoom = 1 << 1
Swift
static var zoom: GLMapViewGestures { get }
-
Rotate gesture
Declaration
Objective-C
GLMapViewGesture_Rotate = 1 << 2
Swift
static var rotate: GLMapViewGestures { get }
-
Zoom in gesture
Declaration
Objective-C
GLMapViewGesture_ZoomIn = 1 << 3
Swift
static var zoomIn: GLMapViewGestures { get }
-
Zoom out gesture
Declaration
Objective-C
GLMapViewGesture_ZoomOut = 1 << 4
Swift
static var zoomOut: GLMapViewGestures { get }
-
Tap gesture
Declaration
Objective-C
GLMapViewGesture_Tap = 1 << 5
Swift
static var tap: GLMapViewGestures { get }
-
Long press gesture
Declaration
Objective-C
GLMapViewGesture_LongPress = 1 << 6
Swift
static var longPress: GLMapViewGestures { get }
-
Recognise all gestures
Declaration
Objective-C
GLMapViewGesture_All = GLMapViewGesture_Pan | GLMapViewGesture_Zoom | GLMapViewGesture_Rotate | GLMapViewGesture_ZoomIn | GLMapViewGesture_ZoomOut | GLMapViewGesture_Tap | GLMapViewGesture_LongPress
Swift
static var all: GLMapViewGestures { get }