FlutterMap constructor

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

Renders an interactive geographical map as a widget

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

Implementation

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