Scene Background Transparent

The Viewer options show you all the things you can toggle:

https://cesiumjs.org/Cesium/Build/Documentation/Viewer.html?classFilter=Viewer

Notice that “globe” is one of them, so you can turn it off by setting it to false:

var viewer = new Cesium.Viewer(‘cesiumContainer’, {

globe: false

});

``