Disable Picking on a 3dTileset, Buildings

HI @Ruediger_Brand,

if you want to disable the Infobox for specific tilesets, but enable it for other tilesets, you can create your own ScreenSpaceEventHandler (listening to left mouse click e.g.) und use the tilesets url in an if-else-statement:

// Create and define own ScreenSpaceEventHandler
let selectionhandler = new Cesium.ScreenSpaceEventHandler(viewer.scene.canvas);
selectionhandler.setInputAction(function onLeftClick (movement) {

    // pick a feature
    const pickedFeature = viewer.scene.pick(movement.position);

    // specify your if-else-condition
    const condition = 'URL OF SPECIFIC TILESET'

    if (pickedFeature.tileset._url === condition) {
        viewer.selectedEntity = null;
    }

}, Cesium.ScreenSpaceEventType.LEFT_CLICK);

If you want to disable ht Infobox for the whole App use the solution Alexander posted.

Best, Lennart

EDIT: if you want to get the url of some ionAssets you can use following code

const url = await Cesium.IonResource.fromAssetId('IonID').then(
    function (response){ 
        return response._url
    }
);

or just use https://assets.cesium.com/{ION_ID}/tileset.json