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