GoogleMapWidget constructor

const GoogleMapWidget({
  1. Key? key,
  2. required double width,
  3. required double height,
  4. required double initialLatValue,
  5. required double initialLongValue,
  6. required double initialTiltValue,
  7. required double initialBearingValue,
  8. required LatLng initialCenterValue,
  9. double zoomValue = 14.4746,
  10. bool showCleaner = true,
  11. String? query,
})

Implementation

const GoogleMapWidget({
  super.key,
  required this.width,
  required this.height,
  required this.initialLatValue,
  required this.initialLongValue,
  required this.initialTiltValue,
  required this.initialBearingValue,
  required this.initialCenterValue,
  this.zoomValue = 14.4746,
  this.showCleaner = true,
  this.query,
});