MapGestureListener

interface MapGestureListener

Functions

onDoubleTap
Link copied to clipboard
abstract fun onDoubleTap(e: MotionEvent, isTwoFingers: Boolean): Boolean
Notified when a double-tap occurs.
onMapClicked
Link copied to clipboard
abstract fun onMapClicked(e: MotionEvent, isTwoFingers: Boolean): Boolean
Notified when a single-tap occurs.
onMapFling
Link copied to clipboard
abstract fun onMapFling(velocityX: Float, velocityY: Float): Boolean
Notified of a fling event when it occurs.
onMapLongClicked
Link copied to clipboard
abstract fun onMapLongClicked(e: MotionEvent): Boolean
Notified when a long click occurs.
onMapMove
Link copied to clipboard
abstract fun onMapMove(e1: MotionEvent, e2: MotionEvent, distanceX: Float, distanceY: Float): Boolean
Notified when a move occurs with the initial on down MotionEvent and the current move MotionEvent.
onMapMoveDone
Link copied to clipboard
abstract fun onMapMoveDone(): Boolean
Notified when a move is finished.
onRotation
Link copied to clipboard
abstract fun onRotation(detector: MapGesturesDetector)
Responds to rotation events for a gesture in progress.
onRotationBegin
Link copied to clipboard
abstract fun onRotationBegin(detector: MapGesturesDetector): Boolean
Responds to the beginning of a rotation gesture.
onRotationEnd
Link copied to clipboard
abstract fun onRotationEnd(detector: MapGesturesDetector)
Responds to the end of a rotation gesture.
onScale
Link copied to clipboard
abstract fun onScale(detector: MapGesturesDetector): Boolean
Responds to scaling events for a gesture in progress.
onScaleBegin
Link copied to clipboard
abstract fun onScaleBegin(detector: MapGesturesDetector): Boolean
Responds to the beginning of a scaling gesture.
onScaleEnd
Link copied to clipboard
abstract fun onScaleEnd(detector: MapGesturesDetector, scaleVelocity: Float)
Responds to the end of a scale gesture.
onTilt
Link copied to clipboard
abstract fun onTilt(detector: MapGesturesDetector)
Responds to tilt events for a gesture in progress.
onTiltBegin
Link copied to clipboard
abstract fun onTiltBegin(detector: MapGesturesDetector): Boolean
Responds to the beginning of a tilt gesture.
onTiltEnd
Link copied to clipboard
abstract fun onTiltEnd(detector: MapGesturesDetector)
Responds to the end of a tilt gesture.

Inheritors

MapGestureAdapter
Link copied to clipboard