FlutterMap constructor

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

Implementation

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