Package 

Object ClusterMapViewGestureBinder

  • All Implemented Interfaces:

    
    public class ClusterMapViewGestureBinder
    
                        

    Android-specific binding utility for connecting MotionEvent gestures to ClusterMapView. Provides convenient methods for integrating ClusterMapView with Android's gesture system.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final View.OnTouchListener bind(View view, ClusterMapView clusterMapView) Bind a View's gesture events to ClusterMapView using the engine's original gesture pipeline.
      final Unit unbind(View view) Unbind gesture events from a view by removing its OnTouchListener.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • bind

         final View.OnTouchListener bind(View view, ClusterMapView clusterMapView)

        Bind a View's gesture events to ClusterMapView using the engine's original gesture pipeline. This ensures complete behavioral consistency by directly reusing the map engine's MotionEvent handling.

        Parameters:
        view - The view to bind gesture events from
        clusterMapView - The cluster map view to send gestures to
      • unbind

         final Unit unbind(View view)

        Unbind gesture events from a view by removing its OnTouchListener.

        Parameters:
        view - The view to unbind gesture events from