moveAndRotateRaw method
MoveAndRotateResult
moveAndRotateRaw(})
Internal endpoint to move, rotate and change zoom level of the MapCamera.
Implementation
MoveAndRotateResult moveAndRotateRaw(
LatLng newCenter,
double newZoom,
double newRotation, {
required Offset offset,
required bool hasGesture,
required MapEventSource source,
String? id,
}) =>
(
moveSuccess: moveRaw(
newCenter,
newZoom,
offset: offset,
hasGesture: hasGesture,
source: source,
id: id,
),
rotateSuccess: rotateRaw(
newRotation,
id: id,
source: source,
hasGesture: hasGesture,
),
);