【vue@leaflet】 通过MapV实现 运行轨迹

关注公众号"seeling_GIS",领取学习视频资料

前序

  1. 之前有网友留言出,希望出一个关于点位的历史轨迹。点位的历史轨迹,我想的是通过 L.polyline 修改对应的点位数据 latlngs 然后通过 setLatLngs 的方式更新即可。如下代码所示。不知道是否是该网友所需要的答案。
// 代码示例来自 https://leafletjs.com/reference-1.6.0.html#polyline
var latlngs = [
    [45.51, -122.68],
    [37.77, -122.43],
    [34.04, -118.2]
];
var polyline = L.polyline(latlngs, {color: 'red'}).addTo(map);
// zoom the map to the polyline
map.fitBounds(polyline.getBounds()); 

  1. 在实际工作中有对运行轨迹的呈现需求,所有就参看了一些例子,实现的方式有很多种,但是发现mapv实现的方式效果会更好,接入也很方便,所有就有了这篇文章

效果

这里是直接使用百度案例中的数据,因为经纬度数据是百度偏转后的数据,这里没有做纠偏,所有看图结果是和实际路网是有一定偏移的


track.gif

引入 MapV

// 通过npm添加 mapv
npm install mapv

import * as mapv from 'mapv' 

代码实现

  1. 使用mapv实现该效果相对来说比较简单,首先是创建数据集,然后设置样式配制option,然后直接调用mapv分装好的 leafletMapLayer 即可
  2. 图上效果是两个图层叠加后的结果,一个是轨迹线图层,一个是运动轨迹图层
// 轨迹线 option

let option= { 
        strokeStyle: "rgba(53,57,255,0.5)",
        shadowColor: "rgba(53,57,255,0.2)",
        shadowBlur: 3,
        lineWidth: 3.0,
        draw: "simple",
      };

// 运动轨迹 option
let aniOption =  {
        fillStyle: "rgba(255, 250, 250, 0.2)",
        globalCompositeOperation: "lighter",
        size: 1.5,
        animation: {
          stepsRange: {
            start: 0,
            end: 100,
          },
          trails: 3,
          duration: 5,
        },
        draw: "simple",
      };

// 初始化 dataset 数据
  this.axios.get("/data/mapv/od-xierqi.txt").then((res) => {
        var data = [];
        var timeData = [];
        let rs = res.data.split("\n");
        console.log(rs.length);
        var maxLength = 0;
        for (var i = 0; i < rs.length; i++) {
          var item = rs[i].split(",");
          var coordinates = [];
          if (item.length > maxLength) {
            maxLength = item.length;
          }
          for (let j = 0; j < item.length; j += 2) { 
            var x = (Number(item[j]) / 20037508.34) * 180;
            var y = (Number(item[j + 1]) / 20037508.34) * 180;
            y =
              (180 / Math.PI) *
              (2 * Math.atan(Math.exp((y * Math.PI) / 180)) - Math.PI / 2);
            if (x == 0 || y == NaN) {
              continue;
            }
            coordinates.push([x, y]);
            timeData.push({
              geometry: {
                type: "Point",
                coordinates: [x, y],
              },
              count: 1,
              time: j,
            });
          }
          data.push({
            geometry: {
              type: "LineString",
              coordinates: coordinates,
            },
          });
        }

        let dataset = new mapv.DataSet(data);
        let timeDataset = new mapv.DataSet(timeData);

        // 添加图层到map
        mapv.leafletMapLayer(dataset, option).addTo(map);
        mapv.leafletMapLayer(timeDataset, aniOption).addTo(map);

    });

更多内容,欢迎关注公众号


seeling_GIS

你可能感兴趣的:(【vue@leaflet】 通过MapV实现 运行轨迹)