MapBoxView constructor
const
MapBoxView({
- Key? key,
- required Place initialLocation,
- required double initialZoom,
- required dynamic onMapMoved(
- LatLng latLng,
- double zoom,
- LatLngBounds bounds,
- MapMoveEventType eventType,
- required bool interactive,
- required List<
CircleMarker> circleMarkers, - required MapboxSdkOptions options,
- required List<
PolyLineLayer> polylines, - required List<
CustomMarker> markers, - required EdgeInsets padding,
- required EdgeInsets buttonsPadding,
- required List<
HeatmapConfig> heatmapConfig, - required dynamic onControllerReady()?,
- required bool showMyLocation,
Implementation
const MapBoxView({
super.key,
required this.initialLocation,
required this.initialZoom,
required this.onMapMoved,
required this.interactive,
required this.circleMarkers,
required this.options,
required this.polylines,
required this.markers,
required this.padding,
required this.buttonsPadding,
required this.heatmapConfig,
required this.onControllerReady,
required this.showMyLocation,
});