原文链接及内容

实现效果:

示例代码如下:

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,//锥化效果强度,以占总线长的百分比表示,当值为1.0或更高则不使用锥化效果
},
},
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);

常用属性记录

  • glowPowertaperPoewer属性介绍如下图所示:

  • ArcType属性值含义,如下图所示:

  • polylineDash属性则参考Cesium.PolylineDashMaterialProperty属性即可,具体如下图所示: