var tagLine = viewer.entities.add({
polyline: {
positions: Cesium.Cartesian3.fromDegreesArrayHeights([
coords[0], coords[1], 0,
coords[0], coords[1], 480
]),
// clampToGround: true,
heightReference: Cesium.HeightReference.RELATIVE_TO_GROUND, //CLAMP_TO_GROUND,
width: 1,
material: new Cesium.PolylineDashMaterialProperty({
color: Cesium.Color.fromCssColorString('#fff') //Cesium.Color.RED
})
}
});
添加的polyline飘浮,设置heightReference无效。设置clampToGround后看不到线。
使用了s3m的地形,同时设置了 scene.globe.depthTestAgainstTerrain = false;
谢谢