flutter_map_floating_marker_titles 0.0.1+1 copy "flutter_map_floating_marker_titles: ^0.0.1+1" to clipboard
flutter_map_floating_marker_titles: ^0.0.1+1 copied to clipboard

outdated

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,
  ),
  layers: [
    TileLayerOptions(
      urlTemplate: 'https://tile.openstreetmap.org/{z}/{x}/{y}.png',
    ),
  ],
),

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