我希望在不同的位置生成一定数量的shape1shape2副本,这些副本只能在运行时知道,并且还可以通过编程方式更改其其他属性。

引用,克隆和修改CZML数据包的首选方法是什么?

var czml = [{
"id" : "document",
    "name" : "CZML Geometries: Cones and Cylinders",
    "version" : "1.0"
}, {
    "id" : "shape1",
    "name" : "Green cylinder with black outline",
    "position" : {
        "cartographicDegrees" : [-100.0, 40.0, 200000.0]
    },
    "cylinder" : {
        "length" : 400000.0,
        "topRadius" : 200000.0,
        "bottomRadius" : 200000.0,
        "material" : {
            "solidColor" : {
                "color" : {
                    "rgba" : [0, 255, 0, 128]
                }
            }
        },
        "outline" : true,
        "outlineColor" : {
            "rgba" : [0, 0, 0, 255]
        }
    }
}, {
    "id" : "shape2",
    "name" : "Red cone",
    "position" : {
        "cartographicDegrees" : [-105.0, 40.0, 200000.0]
    },
    "cylinder" : {
        "length" : 400000.0,
        "topRadius" : 0.0,
        "bottomRadius" : 200000.0,
        "material" : {
            "solidColor" : {
                "color" : {
                    "rgba" : [255, 0, 0, 255]
                }
            }
        }
    }
}];

var dataSource = Cesium.CzmlDataSource.load(czml);
viewer.dataSources.add(dataSource);

最佳答案

加载CzmlDataSource时,Cesium会将CZML转换为EntityCollectionEntities

但是在我进一步解释之前,需要对该数据源进行一些澄清。如果滚动到所发布示例的底部,则会看到这两行。它们来自正式的示例代码,但不幸的是,它们误导了一些人:

var dataSource = Cesium.CzmlDataSource.load(czml);
viewer.dataSources.add(dataSource);


变量名是误称。 load是异步的,并且将Promise返回到数据源,而不是实际的数据源。要获得对实际dataSource的引用,您必须在promise解决时获得一个回调:

Cesium.CzmlDataSource.load(czml).then(function(dataSource) {
    viewer.dataSources.add(dataSource);
    // do more things with dataSource...
});


现在您有了一个真正的dataSource(在异步回调内部),您可以找到dataSource.entities之类的属性。

您不能直接克隆Entity,但是可以从通用选项对象中将EntityCollection添加到EntityCollection中,该对象可以保存并重复使用多次。您还可以实时编辑实体上的大多数属性以反映运行时的更改。当然,编辑实体属性比销毁和重新创建实体要好得多。

在建立EntityCollection之后,将丢弃CZML数据包,但仍保留Entity ID值。您可以使用dataSource.entities.getById('...')查找从特定CZML数据包构建的实体。

关于javascript - 克隆和修改CZML数据包,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42707232/

10-11 19:38
查看更多