Is there a way to completely disable the background imagery in cesium? I would like to see only my data without any background imagery. Is this possible?
You can hide the imagery layer with
viewer.imageryLayers.get(0).show = false;
Or remove it entirely with
viewer.imageryLayers.removeAll();
Best,
Hannah