scaleBy method

Future<void> scaleBy(
  1. double amount,
  2. ScreenCoordinate? anchor,
  3. MapAnimationOptions? mapAnimationOptions
)

Scales the camera by amount around an optional anchor point.

Implementation

Future<void> scaleBy(
  double amount,
  ScreenCoordinate? anchor,
  MapAnimationOptions? mapAnimationOptions,
) => _impl.scaleBy(amount, anchor, mapAnimationOptions);