I have a checkbox in gui which fixes the camera position like this:
viewer.camera.lookAt(cart, new Cesium.HeadingPitchRange(Cesium.Math.toRadians(cesiumController.heading),
Cesium.Math.toRadians(cesiumController.pitch), 10));
Now i want the camera to move freely when checkbox is disabled. How to achieve this? Is there anyway to undo lookat?