当前位置:   article > 正文

【超图+CESIUM】【基础API使用示例】33、超图|CESIUM - 绘制特效线段(发光|指定颜色|带边框|指定颜色箭头|虚线|动态线)_cesium 线闪烁

cesium 线闪烁

前言

	缺少前置学习使用资料,请自行查阅:[https://blog.csdn.net/weixin_44402694/article/details/123110136](https://blog.csdn.net/weixin_44402694/article/details/123110136)
	以下示例使用到的公共静态资料,不建议下载,建议官网自行下载超图Build资源,示例所涉及图片会在示例使用到时提供出来。如有需要可下载:[https://download.csdn.net/download/weixin_44402694/82180350](https://download.csdn.net/download/weixin_44402694/82180350)。
	绘制特效线段(发光|指定颜色|带边框|指定颜色箭头|虚线|动态线)。
  • 1
  • 2
  • 3

使用

  • 效果
    在这里插入图片描述

  • 完整代码

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>绘制特效线 - 流动等</title>
    <link href="./public/Build/Cesium/Widgets/widgets.css" rel="stylesheet" />
    <script
      type="text/javascript"
      src="./public/Build/Cesium/Cesium.js"
    ></script>
    <style>
      * {
        margin: 0;
        padding: 0;
      }
      html,
      body,
      #cesium-container {
        width: 100%;
        height: 100%;
      }
      .panel {
        position: fixed;
        left: 10px;
        top: 10px;
        z-index: 1;
        background-color: #fff;
      }
      .panel .btn {
        cursor: pointer;
      }
    </style>
  </head>
  <body>
    <div id="cesium-container" />
    <div class="panel">
      <p class="btn">1、绘制发光的线</p>
      <p class="btn">2、绘制指定颜色的线</p>
      <p class="btn">3、绘制指定颜色指定边框颜色的线</p>
      <p class="btn">4、绘制指定颜色的箭头静态指示线</p>
      <p class="btn">5、绘制虚线</p>
      <p class="btn">6、绘制动态的线</p>
      <p class="btn">清除</p>
    </div>
    <script>
      let viewer
      window.onload = function () {
        viewer = new Cesium.Viewer('cesium-container', {
          sceneModePicker: true,
          navigation: false,
        })
        initBindDrawEventHandler()
      }

      // 初始化绑定按钮的绘制事件
      function initBindDrawEventHandler() {
        const btns = document.querySelectorAll('.panel .btn')
        btns[0].addEventListener('click', () => {
          drawGlowingLineHandler()
          activeCurrentClickBtnHandler(0)
        })
        btns[1].addEventListener('click', () => {
          drawSpecifyColorLineHandler()
          activeCurrentClickBtnHandler(1)
        })
        btns[2].addEventListener('click', () => {
          drawSpecifyColorAndOutlineColorLineHandler()
          activeCurrentClickBtnHandler(2)
        })
        btns[3].addEventListener('click', () => {
          drawSpecifyColorArrowStaticStateLineHandler()
          activeCurrentClickBtnHandler(3)
        })
        btns[4].addEventListener('click', () => {
          drawDashedLineHandler()
          activeCurrentClickBtnHandler(4)
        })
        btns[5].addEventListener('click', () => {
          drawDynamicLineHandler()
          activeCurrentClickBtnHandler(5)
        })
        btns[6].addEventListener('click', () => {
          clearAllEntitiesHandler()
          activeCurrentClickBtnHandler(6)
        })
      }

      // 1、绘制发光的线
      function drawGlowingLineHandler() {
        viewer.entities.add({
          name: 'Glowing blue line on the surface',
          polyline: {
            positions: Cesium.Cartesian3.fromDegreesArray([
              50, // 第一个点经度lon
              30, // 第一个点纬度lat
              130, // 第二个点经度lon
              30, // 第二个点纬度lat
            ]),
            width: 5,
            followSurface: true,
            material: new Cesium.PolylineGlowMaterialProperty({
              glowPower: 0.2,
              color: Cesium.Color.BLUE,
            }),
          },
        })
      }
      // 2、绘制指定颜色的线
      function drawSpecifyColorLineHandler() {
        viewer.entities.add({
          name: 'Red line on the surface',
          polyline: {
            positions: Cesium.Cartesian3.fromDegreesArray([50, 20, 140, 20]),
            width: 5,
            material: Cesium.Color.RED,
          },
        })
      }
      // 3、绘制指定颜色指定边框颜色的线
      function drawSpecifyColorAndOutlineColorLineHandler() {
        viewer.entities.add({
          name: 'Orange line with black outline at height and following the surface',
          polyline: {
            positions: Cesium.Cartesian3.fromDegreesArrayHeights([
              50, 10, 500000, 140, 10, 250000,
            ]),
            width: 10, // 线宽
            material: new Cesium.PolylineOutlineMaterialProperty({
              color: Cesium.Color.ORANGE, // 指定颜色
              outlineWidth: 2, // 边框的宽度
              outlineColor: Cesium.Color.RED, // 指定边框颜色
            }),
          },
        })
      }
      // 4、绘制指定颜色的箭头静态指示线
      function drawSpecifyColorArrowStaticStateLineHandler() {
        viewer.entities.add({
          name: 'Purple straight arrow at height',
          polyline: {
            positions: Cesium.Cartesian3.fromDegreesArrayHeights([
              50, 0, 500000, 140, 0, 500000,
            ]),
            width: 10,
            followSurface: false,
            material: new Cesium.PolylineArrowMaterialProperty(
              Cesium.Color.YELLOW
            ),
          },
        })
      }
      // 5、绘制虚线
      function drawDashedLineHandler(params) {
        viewer.entities.add({
          name: 'CYAN dashed line',
          polyline: {
            positions: Cesium.Cartesian3.fromDegreesArrayHeights([
              50, -10, 500000, 140, -10, 500000,
            ]),
            width: 4,
            material: new Cesium.PolylineDashMaterialProperty({
              color: Cesium.Color.CYAN,
            }),
          },
        })
      }
      // 6、绘制动态的线
      function drawDynamicLineHandler(params) {
        viewer.entities.add({
          name: 'RED dynamic line',
          polyline: {
            positions: Cesium.Cartesian3.fromDegreesArray([0, 45, 125, 45]),
            width: 10,
            hMax: 500000,
            material: new Cesium.PolylineDynamicMaterialProperty({
              color: Cesium.Color.RED,
              outlineWidth: 0,
              outlineColor: Cesium.Color.BLACK,
            }),
          },
        })
      }

      // 清除所有实体
      function clearAllEntitiesHandler() {
        viewer.entities.removeAll()
      }

      // 高亮当前点击的线段
      function activeCurrentClickBtnHandler(idx) {
        const btns = document.querySelectorAll('.panel .btn')
        Array.from(btns).forEach((btn, index) => {
          btn.style.color = index === idx ? 'red' : '#000'
        })
      }
    </script>
  </body>
</html>

  • 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
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/109547
推荐阅读
相关标签
  

闽ICP备14008679号