InteractiveMarkerLayer constructor

const InteractiveMarkerLayer({
  1. Key? key,
  2. required List<Marker> markers,
  3. MarkerController? markerController,
  4. InteractiveOptions<Marker> options = const InteractiveOptions(),
  5. MarkerLayerOptions markerOptions = const MarkerLayerOptions(alignment: Alignment.bottomCenter),
  6. PopupLayerOptions? popupOptions,
  7. LabelLayerOptions? labelOptions,
  8. ActionLayerOptions? actionOptions,
  9. bool debug = false,
})

Implementation

const InteractiveMarkerLayer({
  super.key,
  required this.markers,
  this.markerController,
  this.options = const InteractiveOptions(),
  this.markerOptions =
      const MarkerLayerOptions(alignment: Alignment.bottomCenter),
  this.popupOptions,
  this.labelOptions,
  this.actionOptions,
  this.debug = false,
});