Hi,
I have a few annotations in 3d model and I want to restrict camera movement when it is selected. I read this forum topic Link
I implemented it using the following code
api.addEventListener('annotationSelect', function(index) {
api.gotoAnnotation(index, {
preventCameraAnimation: true,
preventCameraMove: true
});
});
But the camera is still moving when I click the annotation.