• 【MAPBOX基础功能】20、mapbox获取当前已上图的所有的图层


    前言

    官网指引,生成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获取当前已上图的所有的图层
    
    • 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>20、获取当前已上图的所有的图层</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 onclick="getAllLayers()"><button>获取</button></li>
        </ul>
        <script>
          mapboxgl.accessToken =
            'pk.eyJ1Ijoid2FuZ3Rvbmd4dWUiLCJhIjoiY2pzY3E2M2k0MDk3NzN5dDA0Nmtia2h0cCJ9.oP9fEJxOgVzm0dWGvL6tGg'
          const map = new mapboxgl.Map({
            container: 'map', // 容器 id
            style: 'mapbox://styles/mapbox/streets-v11', // mapbox底图
            center: [108, 35], // 初始化中心点
            zoom: 4, // 初始化层级
          })
          map.on('load', () => {
            point()
            line()
            polygon()
          })
    
          // 绘制点位
          function point() {
            if (map && map.getSource('circle')) {
              map.removeLayer('circle')
              map.removeSource('circle')
            }
            map.addSource('circle', {
              type: 'geojson',
              data: {
                type: 'FeatureCollection',
                features: [
                  {
                    type: 'Feature',
                    properties: { size: 10, color: 'red' },
                    geometry: { type: 'Point', coordinates: [104, 35] },
                  },
                  {
                    type: 'Feature',
                    properties: { size: 5, color: 'green' },
                    geometry: { type: 'Point', coordinates: [110, 35] },
                  },
                  {
                    type: 'Feature',
                    properties: { size: 5, color: 'red' },
                    geometry: { type: 'Point', coordinates: [116, 35] },
                  },
                ],
              },
            })
            map.addLayer({
              id: 'circle',
              type: 'circle',
              source: 'circle',
              paint: {
                'circle-radius': ['get', 'size'],
                'circle-color': ['get', 'color'],
                'circle-opacity': 1,
                'circle-stroke-color': 'red',
                'circle-stroke-opacity': 1,
              },
            })
          }
          // 绘制线
          function line() {
            if (map && map.getSource('line')) {
              map.removeLayer('line')
              map.removeSource('line')
            }
            map.addSource('line', {
              type: 'geojson',
              data: {
                type: 'FeatureCollection',
                features: [
                  {
                    type: 'Feature',
                    properties: { width: 3, color: 'red' },
                    geometry: {
                      type: 'LineString',
                      coordinates: [
                        [120, 30],
                        [122, 31],
                        [124, 32],
                        [126, 33],
                      ],
                    },
                  },
                  {
                    type: 'Feature',
                    properties: { width: 2, color: 'green' },
                    geometry: {
                      type: 'LineString',
                      coordinates: [
                        [110, 30],
                        [112, 31],
                        [114, 32],
                        [116, 33],
                      ],
                    },
                  },
                  {
                    type: 'Feature',
                    properties: { width: 1, color: 'red' },
                    geometry: {
                      type: 'LineString',
                      coordinates: [
                        [100, 30],
                        [102, 31],
                        [104, 32],
                        [106, 33],
                      ],
                    },
                  },
                ],
              },
            })
            map.addLayer({
              id: 'line',
              type: 'line',
              source: 'line',
              paint: {
                'line-color': ['get', 'color'],
                'line-width': ['get', 'width'],
                'line-opacity': 1,
              },
            })
          }
          // 绘制面
          function polygon() {
            if (map && map.getSource('surface')) {
              map.removeLayer('surface')
              map.removeSource('surface')
            }
            map.addSource('surface', {
              type: 'geojson',
              data: {
                type: 'Feature',
                properties: {
                  color: 'red',
                },
                geometry: {
                  type: 'Polygon',
                  coordinates: [
                    [
                      [120, 30],
                      [124, 32],
                      [126, 34],
                      [130, 30],
                      [128, 28],
                      [120, 30],
                    ],
                  ],
                },
              },
            })
            map.addLayer({
              id: 'surface',
              type: 'fill',
              source: 'surface',
              paint: {
                'fill-color': ['get', 'color'],
                'fill-opacity': 1,
                'fill-outline-color': ['get', 'color'],
              },
            })
          }
    
          // 修改鼠标样式
          function getAllLayers() {
            console.log(map.getStyle().layers)
          }
        </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
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
  • 相关阅读:
    DevEco Device Tool 3.0 Release 新版本发布,支持多人共享开发
    【Qt】16进制转换格式字符串及二进制
    图片文字识别的方法有什么?哪种方法比较好用?
    内存优化:Boxing
    EIVideo的安装笔记
    Linux环境配置升级python
    JavawebJAVAJSP网吧计费管理系统(JSP网吧管理系统)网吧收费管理系统网吧自动计费管理系统
    手把手教你springboot集成微信支付
    谷粒商城-day11-仓储管理
    k8s资源对象(二)
  • 原文地址:https://blog.csdn.net/weixin_44402694/article/details/125421173