moveAndRotate method
MoveAndRotateResult
moveAndRotate(
- LatLng newCenter,
- double newZoom,
- double newRotation, {
- required MapEventSource source,
- String? id,
Implementation
MoveAndRotateResult moveAndRotate(
LatLng newCenter, double newZoom, double newRotation,
{required MapEventSource source, String? id}) {
final moveSucc = move(newCenter, newZoom, id: id, source: source);
final rotateSucc = rotate(newRotation, id: id, source: source);
return MoveAndRotateResult(moveSucc, rotateSucc);
}