FlutterMap constructor

const FlutterMap({
  1. Key? key,
  2. MapController? mapController,
  3. MapOptions options = const MapOptions(),
  4. required List<Widget> children,
})

Creates an interactive geographical map

See the properties and online documentation for more information about set-up, configuration, and usage.

Implementation

const FlutterMap({
  super.key,
  this.mapController,
  this.options = const MapOptions(),
  required this.children,
});