flutter_map_floating_marker_titles 1.0.0 copy "flutter_map_floating_marker_titles: ^1.0.0" to clipboard
flutter_map_floating_marker_titles: ^1.0.0 copied to clipboard

Floating Map Marker Titles for flutter_map

Flutter Map Floating Map Marker Titles #

Floating Map Marker Titles for flutter_map, using the core library of the Flutter Floating Map Marker Titles project.

Code example #

FlutterMapWithFMTO(
  floatingTitles,
  fmtoOptions: fmtoOptions,
  // ... other than the 2 above option, this widget takes
  // exactly the same props as the FlutterMap widget.
  options: MapOptions(
    center: LatLng(0, 0),
    zoom: 13,
  ),
  children: [
    TileLayer(
      urlTemplate: 'https://tile.openstreetmap.org/{z}/{x}/{y}.png',
    ),
  ],
),

See the how-to section of the main project for more details.