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 42 43 44 45 46 47 48 49 50 51 52 53 54 55
| const viewer = new Cesium.Viewer("cesiumContainer");
const czml = [ { id: "document", name: "CZML Colors", version: "1.0", }, { id: "rgba", name: "Rectangle with outline using RGBA Colors", rectangle: { coordinates: { wsenDegrees: [-120, 40, -110, 50], }, fill: true, material: { solidColor: { color: { rgba: [255, 0, 0, 100], }, }, }, height: 0, outline: true, outlineColor: { rgba: [0, 0, 0, 255], }, }, }, { id: "rgbaf", name: "Rectangle using RGBAF Colors", rectangle: { coordinates: { wsenDegrees: [-100, 40, -90, 50] }, fill: true, material: { solidColor: { color: { rgbaf: [1, 0, 0, 0.39], }, }, }, height: 0, outline: true, outlineColor: { rgba: [0, 0, 0, 255], }, }, }, ];
const dataSourcePromise = Cesium.CzmlDataSource.load(czml); viewer.dataSources.add(dataSourcePromise); viewer.zoomTo(dataSourcePromise);
|