2
如何刪除cesiumjs折線,在卸下折線銫JS
var p = this.viewer.entities.add({
polyline: {
material: new Cesium.PolylineGlowMaterialProperty({
glowPower: 0.7,
color: Cesium.Color.ORANGE.withAlpha(0.7)
}),
positions: Cesium.Cartesian3.fromDegreesArrayHeights(points),
width: 15,
}
});
我用entities.removeAll(),但它是在刪除從銫conatiner整個數據(包括模型,等等)。我只想刪除折線。