【MAPBOX基础功能】08、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绘制点图层并进行添加、删除、更新、显隐等操作

效果

在这里插入图片描述

代码实现

<!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>08、上图点位图层相关操作</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="addPoint()">添加</button>
      </li>
      <li>
        <button onclick="updatePoint()">更新数据</button>
      </li>
      <li>
        <button onclick="hidePoint()">隐藏</button>
      </li>
      <li>
        <button onclick="showPoint()">显示</button>
      </li>
      <li>
        <button onclick="editPointSize()">修改点位大小</button>
      </li>
      <li>
        <button onclick="editPointColor()">修改点位颜色</button>
      </li>
      <li>
        <button onclick="deletePoint()">删除</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 addPoint() {
        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 updatePoint() {
        if (!map.getSource('circle')) {
          return alert('请先添加')
        }
        map.getSource('circle').setData({
          type: 'FeatureCollection',
          features: [
            {
              type: 'Feature',
              properties: { size: 4, color: 'red' },
              geometry: { type: 'Point', coordinates: [124, 35] },
            },
            {
              type: 'Feature',
              properties: { size: 6, color: 'yellow' },
              geometry: { type: 'Point', coordinates: [128, 35] },
            },
            {
              type: 'Feature',
              properties: { size: 8, color: 'red' },
              geometry: { type: 'Point', coordinates: [132, 35] },
            },
          ],
        })
      }

      // 隐藏
      function hidePoint() {
        if (!map.getSource('circle')) {
          return alert('请先添加')
        }
        map.setLayoutProperty('circle', 'visibility', 'none')
      }

      // 显示
      function showPoint() {
        if (!map.getSource('circle')) {
          return alert('请先添加')
        }
        map.setLayoutProperty('circle', 'visibility', 'visible')
      }

      // 修改点位大小
      function editPointSize() {
        if (!map.getSource('circle')) {
          return alert('请先添加')
        }
        map.setPaintProperty('circle', 'circle-radius', 10)
      }

      // 修改点位颜色
      function editPointColor() {
        if (!map.getSource('circle')) {
          return alert('请先添加')
        }
        map.setPaintProperty('circle', 'circle-color', 'green')
      }

      // 删除点位
      function deletePoint() {
        if (!map.getSource('circle')) {
          return alert('请先添加')
        }
        map.removeLayer('circle')
        map.removeSource('circle')
      }
    </script>
  </body>
</html>

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要在Mapbox添加动态图层,可以使用Mapbox GL JS中的GeoJSON数据源和图层。下面是实现该功能的一些步骤: 1. 首先,需要创建一个GeoJSON数据源,该数据源将包含您要添加的动态的位置和属性信息。 2. 然后,需要创建一个图层,该图层将使用该数据源来呈现动态。您可以使用Mapbox GL JS中提供的“circle”图层类型来创建一个点图层。 3. 接下来,需要将动态添加到数据源中。为此,您可以使用Mapbox GL JS中提供的方法,例如“addSourceData”和“setData”。 4. 最后,可以使用JavaScript定时器或其他方法来更新数据源中的位置和属性信息,从而使动态始终保持更新状态。 以下是一个示例代码片段,展示了如何使用Mapbox GL JS添加动态图层: ``` // 创建一个GeoJSON数据源 var geojsonSource = { type: 'geojson', data: { type: 'FeatureCollection', features: [] } }; // 创建一个点图层 var pointLayer = { id: 'point-layer', type: 'circle', source: 'my-data-source', paint: { 'circle-radius': 10, 'circle-color': 'red' } }; // 添加数据源和图层到地图中 map.addSource('my-data-source', geojsonSource); map.addLayer(pointLayer); // 更新数据源中的位置和属性信息 setInterval(function() { // 获取数据源中的所有Feature var features = geojsonSource.data.features; // 更新Feature的位置和属性 for (var i = 0; i < features.length; i++) { features[i].geometry.coordinates = [newLng, newLat]; features[i].properties = { ... }; } // 更新数据源 map.getSource('my-data-source').setData(geojsonSource.data); }, 1000); ``` 请注意,此示例代码用于演示目的,实际应用中可能需要根据具体需求进行修改。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值