您好,您可以通过entities保存您绘制的点线面。
示例可以参考:http://support.supermap.com.cn:8090/webgl/examples/editor.html#Polyline
核心代码例:
var redLine = viewer.entities.add({
name : 'Red line on the surface',
polyline : {
positions : Cesium.Cartesian3.fromDegreesArray([-75, 35,
-125, 35]),
width : 5,
material : Cesium.Color.RED
}
});