mapbox路径回放

路径回放

import * as turf from '@turf/turf'export default class RouteReplay {/**** @param {*} map mapbox实例对象* @param {*} routejson 路径geojson type = lineString* @param {*} nsteps nsteps type = number* @param {*} realRouteLayerId 线条realRouteLayerId type = string* @param {*} animatePointLayerId animatePointLayerId type = string* @param {*} width 线条width type = number* @param {*} opacity 线条opacity type = number* @param {*} color 线条color type = string*/map: anyjson: anyrealRouteId: stringanimatePointId: stringanimated: booleancounter: numbersteps: numbernsteps: numbernewRouteGeoJson: anytimer: anylayerList: Arraywidth: numberopacity: numbercolor: stringfinish: booleanconstructor(map: any,routejson: {type: string;features: {type: string;geometry: {type: string;coordinates: number[][]}}[] | {type: string;geometry: {type: string;coordinates: number[][]}}[] },nsteps: number,realRouteLayerId: string,animatePointLayerId: string,width: {type: number;default: 5},opacity: {type: number,default: 1},color: {type: string,default: 'rgba(0,255,255,1)'}) {this.map = mapthis.json = routejsonthis.realRouteId = realRouteLayerIdthis.animatePointId = animatePointLayerIdthis.animated = falsethis.counter = 0this.steps = 0this.nsteps = nstepsthis.newRouteGeoJson = nullthis.timer = nullthis.layerList = []this.width = widththis.opacity = opacitythis.color = colorthis.finish = false// 进中的路线this.realRouteGeoJson = {'type': 'FeatureCollection','features': [{'type': 'Feature','geometry': {'type': 'LineString','coordinates': []}}]}// 实时点this.animatePointGeoJson = {'type': 'FeatureCollection','features': [{'type': 'Feature','properties': {},'geometry': {'type': 'Point','coordinates': []}}]}this.init()}init() {// eslint-disable-next-line prefer-destructuringthis.animatePointGeoJson.features[0].geometry.coordinates = this.json.features[0].geometry.coordinates[0]// 轨迹点jsonthis.newRouteGeoJson = this.resetRoute(this.json.features[0], this.nsteps, 'kilometers')// 轨迹点json的点数量this.steps = this.newRouteGeoJson.geometry.coordinates.lengththis.addRealRouteSource(this.realRouteId) // 添加实时轨迹线图层this.addAnimatePointSource(this.animatePointId) // 添加动态点图层this.layerList.push(`realRouteLayer${this.realRouteId}`, `animatePointLayer${this.animatePointId}`,)}animate() {this.finish = falseif (this.counter >= this.steps) {this.finish = truereturn}let startPntlet endPntif (this.counter === 0) { // 开始this.realRouteGeoJson.features[0].geometry.coordinates = []startPnt = this.newRouteGeoJson.geometry.coordinates[this.counter]endPnt = this.newRouteGeoJson.geometry.coordinates[this.counter]} else if (this.counter !== 0) {startPnt = this.newRouteGeoJson.geometry.coordinates[this.counter - 1]endPnt = this.newRouteGeoJson.geometry.coordinates[this.counter]}this.animatePointGeoJson.features[0].geometry.coordinates = this.newRouteGeoJson.geometry.coordinates[this.counter]this.realRouteGeoJson.features[0].geometry.coordinates.push(this.animatePointGeoJson.features[0].geometry.coordinates)// 已经走过的轨迹更新this.map.getSource(`realRouteLayer${this.realRouteId}`).setData(this.realRouteGeoJson)if (this.animated) {this.timer = requestAnimationFrame(() => { this.animate() })}// eslint-disable-next-line no-plusplusthis.counter++}addRealRouteSource(layerId) {this.map.addLayer({'id': `realRouteLayer${layerId}`,'type': 'line','source': {'type': 'geojson','lineMetrics': true,'data': this.realRouteGeoJson},'paint': {'line-width': this.width,'line-opacity': this.opacity,'line-color': this.color,}})}// 添加动态点图层addAnimatePointSource(layerId) {this.map.addLayer({'id': `animatePointLayer${layerId}`,'type': 'symbol','source': {'type': 'geojson','data': this.animatePointGeoJson},// 'layout': {//     'icon-image': '',//     'icon-size': 0,//     'icon-rotate': ['get', 'bearing'],//     'icon-rotation-alignment': 'map',//     'icon-allow-overlap': true,//     'icon-ignore-placement': true// }})}resetRoute(route, nstep, units) {const newroute = {'type': 'Feature','geometry': {'type': 'LineString','coordinates': []}}// 指定点集合的总路长const lineDistance = turf.lineDistance(route)// 每一段的平均距离const nDistance = lineDistance / nstepconst {length} = this.json.features[0].geometry.coordinates// eslint-disable-next-line no-plusplusfor (let i = 0; i < length - 1; i++) {let from = turf.point(route.geometry.coordinates[i]) // type 为 point的featurelet to = turf.point(route.geometry.coordinates[i + 1])let lDistance = turf.distance(from, to, { // 两个点之间的距离units: units})if (i === 0) { // 起始点直接推入newroute.geometry.coordinates.push(route.geometry.coordinates[0])}if (lDistance > nDistance) { // 两点距离大于每段值,将这条线继续分隔let rings = this.splitLine(from, to, lDistance, nDistance, units)newroute.geometry.coordinates = newroute.geometry.coordinates.concat(rings)} else { // 两点距离小于每次移动的距离,直接推入newroute.geometry.coordinates.push(route.geometry.coordinates[i + 1])}}return newroute}// 过长的两点轨迹点分段// eslint-disable-next-line class-methods-use-thissplitLine(from, to, distance, splitLength, units) {var step = parseInt(distance / splitLength, 10)const leftLength = distance - step * splitLengthconst rings = []const route = turf.lineString([from.geometry.coordinates, to.geometry.coordinates])// eslint-disable-next-line no-plusplusfor (let i = 1; i <= step; i++) {let nlength = i * splitLength// turf.alone返回沿着route<LineString>距离为nlength<number>的点let pnt = turf.along(route, nlength, {units: units});rings.push(pnt.geometry.coordinates)}if (leftLength > 0) {rings.push(to.geometry.coordinates)}return rings}start() {if (!this.animated) {this.animated = truethis.animate()}}pause() {this.animated = falsethis.animate()}end() {window.cancelAnimationFrame(this.timer)this.animated = falsethis.counter = 0this.animate()}remove() {window.cancelAnimationFrame(this.timer)// eslint-disable-next-line array-callback-returnthis.layerList.map(layer => {// console.log(layer)if (this.map.getSource(layer)) {this.map.removeLayer(layer)this.map.removeSource(layer)}})}finished(){return this.finish}
}

使用

new RouteReplay(map对象, 数据, 50, `${index}`, `${index}`, 5,1,'rgba(0,255,255,1)')

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/182340.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

注解(概念、分类、自定义注解)

注解基本概念 注解(元数据)为我们在代码中添加信息提供一种形式化的方法&#xff0c;我们可以在某个时刻非常方便的使用这些数据。将的通俗一点&#xff0c;就是为这个方法增加的说明或功能。 作用&#xff1a; 编写文档&#xff1a;通过代码里标识的注解生成文档【生成doc文…

S7-1200PLC和KEPserver OPC通信

KEPserver属于OPCserver商用软件,在国内的市场占有率还是比较高的,这篇博客介绍S71200PLC和KEPserver通信配置,首先我们看下我们的PLC的IP地址。 1、S7-1200PLC IP地址 接下来我们在KEPserver新建通道 2、新建通道 3、选择通道网卡 4、添加PLC IP地址 5、指定扫描模式 6、…

【用unity实现100个游戏之16】Unity中程序化生成的2D地牢4(附项目源码)

文章目录 最终效果前言素材按程序放置物品放置玩家和敌人控制主角移动参考源码完结 最终效果 前言 本期紧跟着上期内容&#xff0c;主要实现在地牢中生成物品、放置玩家和敌人。 素材 物品素材&#xff1a; https://itch.io/c/1597630/super-retro-world 按程序放置物品 …

基于Qt MP3音频播放器示例(可制作音频播放器)

​本次MP3文件也给出来,方便大家调试。话不多说直接上源码。 整个项目下载地址:CSDN:GetCode 昵称-》Qt魔术师:https://gitcode.com/m0_45463480/QtMP3/tree/main## .pro # 指定项目类型为应用程序。TEMPLATE = app# 指定项目的名称为musicplayerTARGET = musicplayer# 添…

民营五百强企业——利群集团的数字化转型升级实践:全集团统一办公,低代码构建应用

利群集团是一家跨地区、多业态、综合性的大型商业集团。多年来&#xff0c;利群集团在坚持以零售连锁和商业物流配送为主业的同时&#xff0c;积极同步发展多业态。在酒店连锁、药品物流和药店连锁、房地产开发、电子商务、文化投资、进出口贸易、跨境电商、金融、快递、矿泉水…

Unity中Shader变体优化

文章目录 前言一、在Unity中查看变体个数&#xff0c;以及有哪些变体二、若使用预定义的变体太多&#xff0c;我们只使用其中的几个变体&#xff0c;我们该怎么做优化一&#xff1a;可以直接定义需要的那个变体优化二&#xff1a;使用 skip_variants 剔除不需要的变体 三、变体…

乱序学机器学习——主成分分析法PCA

文章目录 概览PCA核心思想和原理PCA求解算法PCA算法代码实现降维任务代码实现PCA在数据降噪中的应用PCA在人脸识别中的应用主成分分析优缺点和适用条件优点缺点适用条件 概览 PCA核心思想和原理 PCA求解算法 特征向量表示分布的方向&#xff0c;特征值表示沿着个方向分布的程度…

什么是算法?

一、是什么 算法&#xff08;Algorithm&#xff09;是指解题方案的准确而完整的描述&#xff0c;是一系列解决问题的清晰指令&#xff0c;算法代表着用系统的方法描述解决问题的策略机制 也就是说&#xff0c;能够对一定规范的输入&#xff0c;在有限时间内获得所要求的输出 …

Day13 qt 高级控件,自定义控件,事件,绘图,定时器

高级控件 QListWidget 列表展示控件 效果 添加数据 ui->listWidget->addItem("A"); QStringList list; list << "B" << "C" << "D"; ui->listWidget->addItems(list); 设置item点击 void Widget::on_l…

【EI稳定检索】第三届绿色能源与电力系统国际学术会议(ICGEPS 2024)

第三届绿色能源与电力系统国际学术会议&#xff08;ICGEPS 2024&#xff09; 2024 3rd International Conference on Green Energy and Power Systems 绿色能源是指可以直接用于生产和生活的能源。它包括核能和“可再生能源”。随着世界各国能源需求的不断增长和环境保护意识…

uniapp小程序项目连接微信客服【最新/最全教程】

目录 文档微信官网文档图片微信小程序客服配置官网 效果图聊天地址手机微信电脑端 微信聊天功能实现微信小程序后台添加客服微信号以及配置代码实现参考最后 文档 微信官网文档 微信官网文档 图片 微信小程序客服配置官网 微信小程序客服配置官网 效果图 聊天地址 地址 手…

C++学习寄录(八.继承)

继承的语法&#xff1a;class 子类 : 继承方式 父类 class A : public B; A 类称为子类 或 派生类 B 类称为父类 或 基类 1.基本使用 未使用继承的代码比较冗余重复 #include <iostream> #include <fstream> #include <string> #include <chrono>…

过滤器和拦截器的区别

1. 过滤器 过滤器&#xff08;Filter&#xff09;是 Java Web 应用中用于在请求到达 Servlet 之前和响应离开 Servlet 之后执行某些任务的组件。过滤器可以修改请求和响应&#xff0c;常用于实现日志记录、安全控制、字符编码转换等功能。 例如&#xff0c;实现一个简单的日志…

Linux处理系统常见命令

目录 1 sudo 1.1 介绍 1.2 配合 2 ifconfig与ping 2.1 ifconfig 2.2 ping 3 kill 4 apt-get 4.1 介绍 4.2 配合 5 history 6 clear 7 env 1 sudo 1.1 介绍 给这条命令最高权限&#xff0c;比如 sudo cp something.txt /usr/bin/something.txt 1…

Vue3中teleport 组件是干什么用的

teleport 组件作用 teleport 组件是 Vue 3 中引入的一个新组件&#xff0c;它的作用是将组件的内容渲染到 DOM 中的任何位置。使用场景如处理弹出框、模态框、通知栏等需要将组件内容挂载到 DOM 结构中其他位置。 使用 teleport 可以轻松实现在组件内部定义的内容在 DOM 树的…

4. 权限,特权

对数据段特权检查对直接转移的代码段特权检查栈段的检查调用门的检查 权限问题: 由于CPL,DPL 无法完整表达权限的问题. 例如用户程序(CPL3)通过调用门(将调用到内核过程,从低权限到高权限)执行,此时CPL0,此时可以为所欲为.因此加入RPL.此参数由操作系统来保证,CPU仅使用 RPL:…

Visio学习笔记

1. 常用素材 1.1 立方体&#xff1a;张量, tensor 操作路径&#xff1a;更多形状 ⇒ 常规 ⇒ 基本形状 自动配色 在选择【填充】后Visio会自动进行配色&#xff1b;

【数据结构】——解决topk问题

前言&#xff1a;我们前面已经学习了小堆并且也实现了小堆&#xff0c;那么我们如果要从多个数据里选出最大的几个数据该怎么办呢&#xff0c;这节课我们就来解决这个问题。我们就用建小堆的方法来解决。 首先我们来看到这个方法的时间复杂度&#xff0c;我们先取前k个数据建立…

L1-004:计算摄氏温度

题目描述 给定一个华氏温度F&#xff0c;本题要求编写程序&#xff0c;计算对应的摄氏温度C。计算公式&#xff1a;C5(F−32)/9。题目保证输入与输出均在整型范围内。 输入格式&#xff1a;输入在一行中给出一个华氏温度。 输出格式&#xff1a;在一行中按照格式“Celsius C”…

接口中的大事务,该如何进行优化?

前言 作为后端开发的程序员&#xff0c;我们常常会的一些相对比较复杂的逻辑&#xff0c;比如我们需要给前端写一个调用的接口&#xff0c;这个接口需要进行相对比较复杂的业务逻辑操作&#xff0c;比如会进行&#xff0c;查询、远程接口或本地接口调用、更新、插入、计算等一…