• 【MAPBOX基础功能】15、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>15、地图事件:点击、移入、移出、解绑</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%;
          }
        </style>
      </head>
      <body>
        <div id="map"></div>
        <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: 2, // 初始化层级
          })
          map.on('load', () => {
            add()
          })
          // 鼠标移入点位图层显示手型
          map.on('mouseenter', 'circle', () => {
            map.getCanvas().style.cursor = 'pointer'
          })
          // 鼠标移出点位图层还原
          map.on('mouseleave', 'circle', () => {
            map.getCanvas().style.cursor = ''
          })
          // 绑定点位图层的点击事件 获取当前点击的要素
          map.on('click', 'circle', clickEventCallback)
    
          // 点击事件绑定的回调函数
          function clickEventCallback(e) {
            const features = map.queryRenderedFeatures(e.point)
            if (features.length > 0) {
              console.log(features)
            }
            // 点击一次之后对点击事件进行解绑
            map.off('click', 'circle', clickEventCallback)
          }
    
          function add() {
            map.addSource('circle', {
              type: 'geojson',
              data: {
                type: 'FeatureCollection',
                features: [
                  {
                    type: 'Feature',
                    properties: { id: '1', size: 10, color: 'green' },
                    geometry: { type: 'Point', coordinates: [104, 35] },
                  },
                  {
                    type: 'Feature',
                    properties: { id: '2', size: 10, color: 'green' },
                    geometry: { type: 'Point', coordinates: [110, 35] },
                  },
                  {
                    type: 'Feature',
                    properties: { id: '3', size: 10, color: 'green' },
                    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': ['get', 'color'],
                'circle-stroke-opacity': 1,
              },
            })
            map.addLayer({
              id: 'circle-highlight',
              type: 'circle',
              source: 'circle',
              paint: {
                'circle-radius': ['get', 'size'],
                'circle-color': 'red',
                'circle-opacity': 1,
                'circle-stroke-color': 'red',
                'circle-stroke-opacity': 1,
              },
              filter: ['in', 'id', '-10000'],
            })
          }
        </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
  • 相关阅读:
    如何使用ArcGIS Pro制作个性三维地形图
    大数据之Hive(三)
    61张图,图解Spring事务,拆解底层源码
    【考研英语语法】名词性从句
    YOLOv5基础知识入门(5)— 损失函数(IoU、GIoU、DIoU、CIoU和EIoU)
    VALID/READY 握手机制
    【JavaEE】线程的概念 -- 多线程篇(1)
    Unity UI自适应
    【Rust日报】2022-11-01 async-backtrace 发布
    Java解析微信获取手机号信息
  • 原文地址:https://blog.csdn.net/weixin_44402694/article/details/125420774