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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
| const czml = [ { id: "document", name: "CZML Geometries: Polyline", version: "1.0", }, { id: "redLine", name: "Red line clamped to terain", polyline: { positions: { cartographicDegrees: [-75, 35, 0, -125, 35, 0], }, material: { solidColor: { color: { rgba: [255, 0, 0, 255], }, }, }, width: 5, clampToGround: true, }, }, { id: "blueLine", name: "Glowing blue line on the surface", polyline: { positions: { cartographicDegrees: [-75, 37, 0, -125, 37, 0], }, material: { polylineGlow: { color: { rgba: [100, 149, 237, 255], }, glowPower: 0.2, taperPower: 0.5, }, }, width: 10, }, }, { id: "orangeLine", name: "Orange line with black outline at height and following the surface", polyline: { positions: { cartographicDegrees: [-75, 39, 250000, -125, 39, 250000], }, material: { polylineOutline: { color: { rgba: [255, 165, 0, 255], }, outlineColor: { rgba: [0, 0, 0, 255], }, outlineWidth: 2, }, }, width: 5, }, }, { id: "purpleLine", name: "Purple arrow at height", polyline: { positions: { cartographicDegrees: [-75, 43, 500000, -125, 43, 500000], }, material: { polylineArrow: { color: { rgba: [148, 0, 211, 255], }, }, }, arcType: "NONE", width: 10, }, }, { id: "dashedLine", name: "Blue dashed line", polyline: { positions: { cartographicDegrees: [-75, 45, 500000, -125, 45, 500000], }, material: { polylineDash: { color: { rgba: [0, 255, 255, 255], }, }, }, width: 4, }, }, ];
const viewer = new Cesium.Viewer("cesiumContainer"); const dataSourcePromise = Cesium.CzmlDataSource.load(czml); viewer.dataSources.add(dataSourcePromise); viewer.zoomTo(dataSourcePromise);
|