this.view.scene.backgroundColor = new Cesium.Color(0.0, 0.0, 0.0, 0.0);
//关闭大气
this.view.scene.skyAtmosphere.show = false
//抗锯齿
this.view.scene.fxaa = true;
this.view.scene.postProcessStages.fxaa.enabled = true;
//关闭天空月亮
this.view.scene.sun.show = false; //在Cesium1.6(不确定)之后的版本会显示太阳和月亮,不关闭会影响展示
this.view.scene.moon.show = false;
this.view.scene.skyBox.show = false;//关闭天空盒,否则会显示天空颜色
this.view.scene.undergroundMode = false; //重要,开启地下模式,设置基色透明,这样就看不见黑色地球了
this.view.scene.globe.show = false; //不显示地球,这条和地球透明度选一个就可以
// 面
viewer.entities.add({
polygon: {
hierarchy: new Cesium.Cartesian3.fromDegreesArray(jsonxx),
material: Cesium.Color.fromCssColorString('#020C5E').withAlpha(0.5)
},
zIndex: 7,
});
//线
viewer.entities.add({
polyline: {
positions: new Cesium.Cartesian3.fromDegreesArray(jsonxx),
width: 3,
material: Cesium.Color.fromCssColorString('#4caef0'),
clampToGround: false
},
zIndex: 7,
});
线能显示,面显示不出来。背景是图片。面的颜色是蓝色,现在是显示不出来,如何能让他显示出来呢