Although it is good to have it for some fast zoom in, sometimes it is just way too hard to remove the focused camera effect. I think it is better remove the focused effect after user clicked somewhere else and let the camera go. Is there a way to disable that button?
Hello,
The easiest way to get rid of the camera button is probably to hide it with CSS. Add this:
.cesium-infoBox-camera{
display: none;
}
Best,
Hannah
Just note: It seems that currently (Cesium JS 1125) the css to hide the focus camera button needs to be:
button.cesium-infoBox-camera {
display: none;
}
It seems it is now possible to disable the infoBox Camera Tracking Icon using infoBox viewModel?
However, a simple code example would be appreciated!