FlutterMapFloatingMarkerTitlesOverlay constructor

FlutterMapFloatingMarkerTitlesOverlay(
  1. AbstractMapViewInterface mapViewInterface,
  2. FMTOOptions fmtoOptions, {
  3. Key? key,
  4. List<FloatingMarkerTitleInfo>? floatingTitles,
  5. Stream<List<FloatingMarkerTitleInfo>>? floatingTitlesStream,
})

Implementation

FlutterMapFloatingMarkerTitlesOverlay(
  final AbstractMapViewInterface mapViewInterface,
  final FMTOOptions fmtoOptions, {
  super.key,
  final List<FloatingMarkerTitleInfo>? floatingTitles,
  final Stream<List<FloatingMarkerTitleInfo>>? floatingTitlesStream,
}) : _fmtoController = FMTOController(
        mapViewInterface,
        fmtoOptions,
        floatingTitles: floatingTitles,
        floatingTitlesStream: floatingTitlesStream,
      );