FlutterMap constructor
FlutterMap({
- Key? key,
- required MapOptions options,
- List<
LayerOptions> layers = const [], - List<
Widget> children = const [], - MapController? mapController,
- dynamic returnPositionTapped(
- LatLng?,
- double? zoom
- bool absorbDoubleTapPointer = false,
Implementation
FlutterMap({
Key? key,
required this.options,
this.layers = const [],
this.children = const [],
MapController? mapController,
this.returnPositionTapped,
this.absorbDoubleTapPointer = false,
}) : _mapController = mapController as MapControllerImpl? ??
MapController() as MapControllerImpl,
super(key: key);