setZoomLevel method

void setZoomLevel(
  1. double zoomLevel$1, {
  2. required bool animated,
})

Changes the zoom level of the map and optionally animates the change.

Changing the zoom level scales the map without changing the current center coordinate.

@param zoomLevel The new zoom level for the map. @param animated Specify YES if you want the map view to animate the change to the new zoom level or NO if you want the map to display the new zoom level immediately.

Implementation

void setZoomLevel(double zoomLevel$1, {required bool animated}) {
_objc_msgSend_ghxo7e(this.ref.pointer, _sel_setZoomLevel_animated_, zoomLevel$1, animated);

}