• 【MAPBOX基础功能】13、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>13、filter - 高亮线位图层中指定的线</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="highlight()">高亮id=2的要素</button>
          </li>
          <li>
            <button onclick="removeHighlight()">移除高亮</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('line')) {
              map.removeLayer('line')
              map.removeLayer('line-highlight')
              map.removeSource('line')
            }
            map.addSource('line', {
              type: 'geojson',
              data: {
                type: 'FeatureCollection',
                features: [
                  {
                    type: 'Feature',
                    properties: { id: '1', width: 3, color: 'green' },
                    geometry: {
                      type: 'LineString',
                      coordinates: [
                        [120, 30],
                        [122, 31],
                        [124, 32],
                        [126, 33],
                      ],
                    },
                  },
                  {
                    type: 'Feature',
                    properties: { id: '2', width: 3, color: 'green' },
                    geometry: {
                      type: 'LineString',
                      coordinates: [
                        [110, 30],
                        [112, 31],
                        [114, 32],
                        [116, 33],
                      ],
                    },
                  },
                  {
                    type: 'Feature',
                    properties: { id: '3', width: 3, color: 'green' },
                    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,
              },
            })
            map.addLayer({
              id: 'line-highlight',
              type: 'line',
              source: 'line',
              paint: {
                'line-color': 'red',
                'line-width': ['get', 'width'],
                'line-opacity': 1,
              },
              filter: ['in', 'id', '-10000'],
            })
          }
          // 高亮指定id的要素
          function highlight() {
            if (!map.getSource('line')) {
              return alert('请先添加')
            }
            map.setFilter('line-highlight', ['==', ['string', ['get', 'id']], '2'])
          }
          // 移除高亮
          function removeHighlight() {
            if (!map.getSource('line')) {
              return alert('请先添加')
            }
            map.setFilter('line-highlight', [
              '==',
              ['string', ['get', 'id']],
              '-10000',
            ])
          }
          map.on('click', 'line', (e) => {
            const features = map.queryRenderedFeatures(e.point)
            if (features.length > 0) {
              map.setFilter('line-highlight', [
                '==',
                ['string', ['get', 'id']],
                features[0].properties.id,
              ])
            }
          })
        </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
  • 相关阅读:
    Matlab:Matlab编程语言学习之变量&常量/数据类型的简介、技巧总结案例应用之详细攻略
    DP83TG720SWRHARQ1 IC TRANSCEIVER 接口芯片、TCAN1051VDRBTQ1
    机器学习高手之路:发现TensorFlow学习网站的无限可能!
    【韩顺平 零基础30天学会Java】面向对象编程(中级)
    R语言中做VIF分析的问题探索
    Qwen 通义千问 14B 模型,长文本问答效果测试
    一百八十四、大数据离线数仓完整流程——步骤三、在Hive中建基础库维度表并加载MySQL中的维度表数据
    jdbc回顾
    浅层砂过滤器 全自动浅层介质过滤系统
    Spring之aop
  • 原文地址:https://blog.csdn.net/weixin_44402694/article/details/125420663