GestureManager

public final class GestureManager : NSObject
extension GestureManager: UIGestureRecognizerDelegate

Undocumented

  • The GestureOptions that are used to set up the required gestures on the map

    Declaration

    Swift

    public var options: GestureOptions { get set }
  • The underlying gesture recognizer for the pan gesture

    Declaration

    Swift

    public var panGestureRecognizer: UIGestureRecognizer? { get }
  • The underlying gesture recognizer for the “double tap to zoom in” gesture

    Declaration

    Swift

    public var doubleTapToZoomInGestureRecognizer: UIGestureRecognizer? { get }
  • The underlying gesture recognizer for the “double tap to zoom out” gesture

    Declaration

    Swift

    public var doubleTapToZoomOutGestureRecognizer: UIGestureRecognizer? { get }
  • The underlying gesture recognizer for the quickZoom gesture

    Declaration

    Swift

    public var quickZoomGestureRecognizer: UIGestureRecognizer? { get }
  • The underlying gesture recognizer for the pitch gesture

    Declaration

    Swift

    public var pitchGestureRecognizer: UIGestureRecognizer? { get }
  • The underlying gesture recognizer for the rotate gesture

    Declaration

    Swift

    public var rotationGestureRecognizer: UIGestureRecognizer? { get }
  • The underlying gesture recognizer for the “pinch to zoom” gesture

    Declaration

    Swift

    public var pinchGestureRecognizer: UIGestureRecognizer? { get }
  • Set this delegate to be called back if a gesture begins

    Declaration

    Swift

    public weak var delegate: GestureManagerDelegate?
  • A floating-point value that determines the rate of deceleration after the user lifts their finger.

    Declaration

    Swift

    public var decelerationRate: CGFloat
  • Undocumented

    Declaration

    Swift

    public func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool
  • Undocumented

    Declaration

    Swift

    public func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer,
                                  shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool