1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
| const czml = [ { id: "document", name: "CZML Point - Time Dynamic", version: "1.0", clock: { interval: "2012-08-04T16:00:00Z/2012-08-04T16:05:00Z", currentTime: "2012-08-04T16:00:00Z", multiplier: 30, }, }, { id: "point", availability: "2012-08-04T16:00:00Z/2012-08-04T16:05:00Z", position: { epoch: "2012-08-04T16:00:00Z", cartographicDegrees: [ 0, -70, 20, 150000, 100, -80, 44, 150000, 200, -90, 18, 150000, 300, -98, 52, 150000, ], }, point: { color: { rgba: [255, 255, 255, 128], }, outlineColor: { rgba: [255, 0, 0, 128], }, outlineWidth: 3, pixelSize: 15, }, }, ];
const viewer = new Cesium.Viewer("cesiumContainer", { shouldAnimate: true, });
viewer.dataSources.add(Cesium.CzmlDataSource.load(czml));
|