animatedZoomIn method

Future<void> animatedZoomIn({
  1. Curve? curve,
  2. String? customId,
})

Add one level to the current zoom level.

If curve is not specified, the one specified in the constructor will be used.

Implementation

Future<void> animatedZoomIn({Curve? curve, String? customId}) {
  return animateTo(
    zoom: mapController.camera.zoom + 1,
    curve: curve,
    customId: customId,
  );
}