Hello,
similar question again - is there any way for the Author/content creator to control which specific objects will have the “InfoBox feature” dis-/enabled?
The example mentioned in the Sandcastle example above seems to cover just dis-/enabling all InfoBoxes in the scene…(?)
Perhaps the showInfo member of InfoBoxViewModel can be somehow of help?
My example user case is:
Scene with several 3D models of individual buildings, each with a descriptive label attached.
Desired goal is to have the labels generate InfoBoxes when clicked, while the models themselves not (make them “not clickable”).
(how to hint the user, what is clickable and what is not, using mouse cursor change to “pointer”, is discussed here).
I use an event handler to intercept all left clicks, and pass them to a callback function. The callback then checks if an entity exists at the location that was clicked, and based on the entity id you can take different actions as you like.
// register event handler
viewer.screenSpaceEventHandler.setInputAction(function (movement) {leftClick(movement);},
Cesium.ScreenSpaceEventType.LEFT_CLICK);
// handles any LEFT-CLICK event in the viewer
function leftClick(movement){
// handle any object selection
let object = viewer.scene.pick(movement.position);
if (Cesium.defined(object) && Cesium.defined(object.id)) {
let entity = object.id;
console.log(`Selected object: ${entity.id}`);
// call async data loader fct
loadInfobox(entity);
// show the objects InfoBox
viewer.selectedEntity = entity;
}
}
You can just have a conditional based on the entity id to set which objects should show the InfoBox.