我用了下面这个方法,在夜景的时候给标志性建筑设置点光源,经纬度是在idesktop中,使用场景中的查询经纬度,点击建筑显示的经纬度,放在这里好像没有效果哇,是我写的不对嘛?
var pA= new Cesium.Cartesian3.fromDegrees(
104.040999385437,
35.9310552582943,
28.5
);
var oA = {
color: new Cesium.Color(0.6, 0.3, 0.1, 1.0),
cutoffDistance: 50,
decay: 0.5,
intensity: 5
};
var pointLight = new Cesium.PointLight(pA, oA);
scene.addLightSource(pointLight);