InterractiveMapLayer constructor

InterractiveMapLayer({
  1. DisplayPolygonLayerLogic? displayLogic,
  2. List<Polygon<Object>>? polygons,
  3. List<Polyline<Object>>? polylines,
  4. List<Marker>? markers,
  5. void onTapPolygon(
    1. InterractiveMapLayerTapDown interaction
    )?,
  6. void onHoverPolygons(
    1. InterractiveMapLayerHover? interaction
    )?,
  7. List<Polygon<Object>> polygonsFromHitValues(
    1. List<Object> hitValues
    )?,
})

Implementation

InterractiveMapLayer({
  this.displayLogic,
  this.polygons,
  this.polylines,
  this.markers,
  this.onTapPolygon,
  this.onHoverPolygons,
  this.polygonsFromHitValues,
});