• 【MAPBOX基础功能】11、mapbox绘制symbol icon图层并进行添加、删除、更新、显隐等操作


    前言

    官网指引,生成accesstoken,下载相关依赖请翻阅[https://blog.csdn.net/weixin_44402694/article/details/125414381?spm=1001.2014.3001.5501](https://blog.csdn.net/weixin_44402694/article/details/125414381?spm=1001.2014.3001.5501)
    本文使用官网accesstoken,请自行生成私人token
    mapbox绘制symbol icon图层并进行添加、删除、更新、显隐等操作
    
    • 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>11、symbol icon图层操作:添加|删除|更新|编辑</title>
        <link
          href="https://api.mapbox.com/mapbox-gl-js/v2.7.0/mapbox-gl.css"
          rel="stylesheet"
        />
        <script src="https://api.mapbox.com/mapbox-gl-js/v2.7.0/mapbox-gl.js"></script>
        <style>
          * {
            padding: 0;
            margin: 0;
            list-style: none;
            text-decoration: none;
          }
          html,
          body {
            width: 100%;
            height: 100%;
          }
          #map {
            width: 100%;
            height: 100%;
          }
          .btn-list {
            position: fixed;
            top: 100px;
            left: 100px;
          }
        </style>
      </head>
      <body>
        <div id="map"></div>
        <ul class="btn-list">
          <li>
            <button onclick="add()">添加</button>
          </li>
          <li>
            <button onclick="update()">更新数据</button>
          </li>
          <li>
            <button onclick="hide()">隐藏</button>
          </li>
          <li>
            <button onclick="show()">显示</button>
          </li>
          <li>
            <button onclick="editSize()">修改大小</button>
          </li>
          <li>
            <button onclick="deleteLayer()">删除</button>
          </li>
        </ul>
        <script>
          let marker = null
          mapboxgl.accessToken =
            'pk.eyJ1Ijoid2FuZ3Rvbmd4dWUiLCJhIjoiY2pzY3E2M2k0MDk3NzN5dDA0Nmtia2h0cCJ9.oP9fEJxOgVzm0dWGvL6tGg'
          const map = new mapboxgl.Map({
            container: 'map', // 容器 id
            style: 'mapbox://styles/mapbox/streets-v11', // mapbox底图
            center: [108, 35], // 初始化中心点
            zoom: 2, // 初始化层级
          })
    
          // 添加点位图层
          function add() {
            if (map && map.getSource('icon')) {
              map.removeLayer('icon')
              map.removeSource('icon')
              map.removeImage('arrow')
            }
            map.loadImage(
              'https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fhbimg.b0.upaiyun.com%2Fc3aaad0d1154dc5cc5675ca53b25a05d85375b1318ff-x1QjSf_fw658&refer=http%3A%2F%2Fhbimg.b0.upaiyun.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=auto?sec=1658476811&t=bda3018aa185f4181051598dc68179fe',
              (error, image) => {
                if (error) throw error
                map.addImage('arrow', image)
              }
            )
            map.addSource('icon', {
              type: 'geojson',
              data: {
                type: 'FeatureCollection',
                features: [
                  {
                    type: 'Feature',
                    properties: { size: 0.1, rotate: 0, color: 'red' },
                    geometry: { type: 'Point', coordinates: [104, 35] },
                  },
                  {
                    type: 'Feature',
                    properties: { size: 0.1, rotate: 270, color: 'green' },
                    geometry: { type: 'Point', coordinates: [110, 35] },
                  },
                  {
                    type: 'Feature',
                    properties: { size: 0.1, rotate: 180, color: 'red' },
                    geometry: { type: 'Point', coordinates: [116, 35] },
                  },
                ],
              },
            })
            map.addLayer({
              id: 'icon',
              type: 'symbol',
              source: 'icon',
              layout: {
                'icon-image': 'arrow',
                'icon-size': ['get', 'size'],
                'icon-rotate': ['get', 'rotate'],
                'icon-offset': [0, 0],
                'icon-rotation-alignment': 'map',
                'icon-allow-overlap': true,
                'icon-ignore-placement': true,
                visibility: 'visible',
              },
            })
          }
    
          // 更新数据源
          function update() {
            if (!map.getSource('icon')) {
              return alert('请先添加')
            }
            map.getSource('icon').setData({
              type: 'FeatureCollection',
              features: [
                {
                  type: 'Feature',
                  properties: { size: 0.1, rotate: 200, color: 'red' },
                  geometry: { type: 'Point', coordinates: [124, 35] },
                },
                {
                  type: 'Feature',
                  properties: { size: 0.1, rotate: 200, color: 'yellow' },
                  geometry: { type: 'Point', coordinates: [128, 35] },
                },
                {
                  type: 'Feature',
                  properties: { size: 0.1, rotate: 200, color: 'red' },
                  geometry: { type: 'Point', coordinates: [132, 35] },
                },
              ],
            })
          }
    
          // 隐藏
          function hide() {
            if (!map.getSource('icon')) {
              return alert('请先添加')
            }
            map.setLayoutProperty('icon', 'visibility', 'none')
          }
    
          // 显示
          function show() {
            if (!map.getSource('icon')) {
              return alert('请先添加')
            }
            map.setLayoutProperty('icon', 'visibility', 'visible')
          }
    
          // 修改大小
          function editSize() {
            if (!map.getSource('icon')) {
              return alert('请先添加')
            }
            map.setLayoutProperty('icon', 'icon-size', 0.05)
          }
    
          // 删除点位
          function deleteLayer() {
            if (!map.getSource('icon')) {
              return alert('请先添加')
            }
            map.removeLayer('icon')
            map.removeSource('icon')
            map.removeImage('arrow')
          }
        </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
  • 相关阅读:
    go的切片扩容机制
    MySQL实现的一点总结(四)
    SpringBoot SpringBoot 基础篇 3 SpringBoot 整合第三方技术 3.6 SpringBoot 整合 Druid
    仅需三行代码! C# 快速实现PDF转PPT
    CDH大数据平台 31Cloudera Manager Console之impala hive负载均衡(markdown新版)
    岩藻多糖-聚乙二醇-过氧化氢酶,Catalase-PEG-Fucoidan,过氧化氢酶-PEG-岩藻多糖
    Linux学习系列:在CentOS 7上切换WiFi节点
    修改了字符集,好多软件不能正常使用,所以,慎重。。。。
    深度学习遥感数据集
    C++ builder 常见问题汇总
  • 原文地址:https://blog.csdn.net/weixin_44402694/article/details/125415775