I am new to Cesium and have just started playing with it. I was wondering how to turn of the Sun, Stars, and atmosphere in the call:
var viewer = new Cesium.Viewer(‘cesiumContainer’, {
imageryProvider : new Cesium.WebMapServiceImageryProvider({
url : ‘http://localhost:8080/geoserver/ows’,
layers: ‘r:earth’
}),
baseLayerPicker : false,
animation: false,
geocoder: false,
timeline: false
});
Thanks!