zoomIn static method

dynamic zoomIn()

Returns a camera update that zooms the camera in, bringing the camera closer to the surface of the Earth.

Equivalent to the result of calling zoomBy(1.0).

Implementation

static zoomIn() {
  if (Platform.isIOS) {
    return appleMaps.CameraUpdate.zoomIn();
  } else if (Platform.isAndroid) {
    return googleMaps.CameraUpdate.zoomIn();
  }
}