VoyagerFeaturesInteractionProtocol constructor

VoyagerFeaturesInteractionProtocol({
  1. required VoyagerMapController mapController,
  2. OnFeatureGesture<Polygon>? onPolygonSingleTap,
  3. OnFeatureGesture<Marker>? onMarkerSingleTap,
  4. OnFeatureGesture<Polyline>? onPolylineSingleTap,
  5. OnFeatureGesture<Polygon>? onPolygonLongPress,
  6. OnFeatureGesture<Marker>? onMarkerLongPress,
  7. OnFeatureGesture<Polyline>? onPolylineLongPress,
})

Implementation

VoyagerFeaturesInteractionProtocol({
  required super.mapController,
  this.onPolygonSingleTap,
  this.onMarkerSingleTap,
  this.onPolylineSingleTap,
  this.onPolygonLongPress,
  this.onMarkerLongPress,
  this.onPolylineLongPress,
});