CenterZoomMap constructor

const CenterZoomMap({
  1. Key? key,
  2. required LatLngBounds? bounds,
  3. required LatLng? focusedPoint,
  4. double minZoom = 0.0,
  5. double maxZoom = 18.0,
  6. required List<Widget> children,
})

Implementation

const CenterZoomMap({
  super.key,
  required this.bounds,
  required this.focusedPoint,
  this.minZoom = 0.0,
  this.maxZoom = 18.0,
  required this.children,
});