Disable user actions

Hi!

How is possible to disable all user inputs, like move the map with mouse or keyboard?

Thanks!

Tamy

Try something like this, from the Camera tutorial on the Sandcastle

function disableInput(scene) {

var controller = scene.getScreenSpaceCameraController();

controller.enableTranslate = false;

controller.enableZoom = false;

controller.enableRotate = false;

controller.enableTilt = false;

controller.enableLook = false;

};

Brendan