moveCamera method
Future<void>
moveCamera({
- required LatLng point,
- double? zoomLevel,
- int? threeDHeading,
- int? threeDTilt,
- 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,
);
}