W3WGoogleMap constructor

const W3WGoogleMap({
  1. Key? key,
  2. required CameraPosition initialCameraPosition,
  3. dynamic onW3WSelected(
    1. W3WEntity
    )?,
  4. bool showGrid = true,
  5. Color gridColor = Colors.blue,
  6. double gridOpacity = 0.4,
  7. Set<Marker> markers = const {},
  8. ArgumentCallback<GoogleMapController>? onMapCreated,
  9. ArgumentCallback<LatLng>? onTap,
  10. CameraPositionCallback? onCameraMove,
})

Implementation

const W3WGoogleMap({
  super.key,
  required this.initialCameraPosition,
  this.onW3WSelected,
  this.showGrid = true,
  this.gridColor = Colors.blue,
  this.gridOpacity = 0.4,
  this.markers = const {},
  this.onMapCreated,
  this.onTap,
  this.onCameraMove,
});