【MapBox】实现实时飞行轨迹功能

之前写了一篇MapBox添加带箭头的轨迹线,现在在这个基础之上实现获取到无人机的推送点位数据实时飞行的功能

  1. 首先创建实例,将无人机的图标加载在地图上
javascript 复制代码
const MAP_UAV_FLIGHT_ING = (values, layerKey = '无人机飞行') => {
  ClearUAVMap();

  const map = GET_MAPBOX_MAP();

  map.loadImage(imageIcon.value, function (error, img) {
    if (error) throw error;

    map.addImage('uavIcon', img);
  });

  const allPoints = [];

  allPoints.push(
    turf.point([values?.droneLongitude, values?.droneLatitude], {
      ...values,
      layerKey,
      bearing: values.yaw,
    }),
  );

  // 特征集合
  animatePointGeoJson = turf.featureCollection(allPoints);

  map.addLayer({
    id: 'animatePointLayer',
    type: 'symbol',
    source: {
      type: 'geojson',
      data: animatePointGeoJson,
    },
    layout: {
      'icon-image': 'uavIcon',
      'icon-size': 0.5,
      'icon-rotate': ['get', 'bearing'],
      'icon-rotation-alignment': 'map',
      'icon-allow-overlap': true,
      'icon-ignore-placement': true,
    },
  });
  // counter = counter + 1;
};

备注:

  1. ClearUAVMap()方法是为了清除图层,否则再展示其他无人机轨迹的时候控制台会提示地图上已存在这个图层
javascript 复制代码
// 清除轨迹
export const ClearUAVMap = () => {
  if (map?.hasImage('uavIcon')) map?.removeImage('uavIcon');

  if (map.getLayer('animatePointLayer')) map.removeLayer('animatePointLayer');
  if (map.getSource('animatePointLayer')) map.removeSource('animatePointLayer');

  if (map.getLayer('homePointLayer')) map.removeLayer('homePointLayer');
  if (map.getSource('homePointLayer')) map.removeSource('homePointLayer');
};
  1. 'icon-rotate': ['get', 'bearing'],这个数据是添加数据源中指定的属性,bearing表示无人机的方向,这样无人机就会按照所提供的方向进行飞行

  2. 这个时候获取到实时推送的数据只需要获取到该图层的图层源改数据就可以了,不用清除再重新加载

javascript 复制代码
const MAP_ANIMATE_ING = (values, layerKey = '无人机飞行') => {
  const map = GET_MAPBOX_MAP();

  animatePointGeoJson.features[0].geometry.coordinates = [values?.droneLongitude, values?.droneLatitude];
  animatePointGeoJson.features[0].properties = {
    ...values,
    layerKey,
    bearing: values.yaw, //方向
  };

  map.getSource('animatePointLayer').setData(animatePointGeoJson);

  map.moveLayer('animatePointLayer', 'arrowLayer', 'routeLayer');
};
相关推荐
FIRE19 分钟前
uniapp小程序分享使用canvas自定义绘制 vue3
前端·小程序·uni-app
四喜花露水20 分钟前
vue elementui el-dropdown-item设置@click无效的解决方案
前端·vue.js·elementui
jokerest12341 分钟前
web——sqliabs靶场——第五关——报错注入和布尔盲注
前端
谢尔登1 小时前
前端开发调试之 PC 端调试
开发语言·前端
每天吃饭的羊1 小时前
在循环中只set一次
开发语言·前端·javascript
_默_4 小时前
adminPage-vue3依赖DetailsModule版本说明:V1.2.1——1) - 新增span与labelSpan属性
前端·javascript·vue.js·npm·开源
也无晴也无风雨6 小时前
深入剖析输入URL按下回车,浏览器做了什么
前端·后端·计算机网络
Martin -Tang6 小时前
Vue 3 中,ref 和 reactive的区别
前端·javascript·vue.js
FakeOccupational8 小时前
nodejs 020: React语法规则 props和state
前端·javascript·react.js
放逐者-保持本心,方可放逐8 小时前
react 组件应用
开发语言·前端·javascript·react.js·前端框架