-
- All Implemented Interfaces:
public interface MapGestureProviderUnified gesture provider for ClusterMapView that supports different HMI capabilities. HMIs can choose the most appropriate gesture handling method based on their platform and requirements.
-
-
Method Summary
Modifier and Type Method Description abstract MapPrimitiveEventGestureprimitiveEventGesture()Primitive (raw) gesture handling for HMIs that can provide platform-agnostic gesture events. abstract MapMotionEventGesturemotionEventGesture()Android MotionEvent gesture handling for HMIs that work with raw touch events. -
-
Method Detail
-
primitiveEventGesture
abstract MapPrimitiveEventGesture primitiveEventGesture()
Primitive (raw) gesture handling for HMIs that can provide platform-agnostic gesture events.
Use this for:
Android Auto applications
Embedded systems with custom input devices
-
motionEventGesture
abstract MapMotionEventGesture motionEventGesture()
Android MotionEvent gesture handling for HMIs that work with raw touch events. Directly reuses the map engine's gesture pipeline for complete behavior consistency.
Use this for:
Android native applications with touch screens
When you need exact engine behavior compatibility
Direct View.OnTouchListener integration
-
-
-
-