moveCamera method

Future<void> moveCamera({
  1. required LatLng point,
  2. double? zoomLevel,
  3. int? threeDHeading,
  4. int? threeDTilt,
  5. AnimationOptions? animationOptions,
})

Implementation

Future<void> moveCamera({
  required LatLng point,
  double? zoomLevel,
  int? threeDHeading,
  int? threeDTilt,
  AnimationOptions? animationOptions,
}) {
  return ArcgisMapPlatform.instance.moveCamera(
    mapId: mapId,
    point: point,
    zoomLevel: zoomLevel,
    threeDHeading: threeDHeading,
    threeDTilt: threeDTilt,
    animationOptions: animationOptions,
  );
}