openlayer 轨迹动画(方式一)使用ol-ext

ol-ext官方示例地址:ol-ext

示例代码 实测可用

<!DOCTYPE html>
<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>点沿线动画</title><!-- Openlayers --><link rel="stylesheet" href="./dist/ol.css" /><script type="text/javascript" src="./dist/ol.js"></script><!-- ol-ext --><link rel="stylesheet" href="./dist/ol-ext.css" /><script type="text/javascript" src="./dist/ol-ext.js"></script><style type="text/css">html,body,#map {margin: 0px;padding: 0px;width: 100%;height: 100%;}</style></head><body><div id="map"></div></body><script type="text/javascript">function transform(pois) {return ol.proj.transform(pois, 'EPSG:4326', 'EPSG:3857')}var tileLayer = new ol.layer.Tile({source: new ol.source.XYZ({url: 'http://wprd0{1-4}.is.autonavi.com/appmaptile?lang=zh_cn&size=1&style=7&x={x}&y={y}&z={z}'})});var map = new ol.Map({controls: [],target: 'map',layers: [tileLayer],view: new ol.View({center: transform([103.584297498027, 36.119086450265]),zoom: 4,})});// 线var lineCoord = [[79.78351732091059, 38.26132508806543],[91.24445696667777, 40.75626733863021],[95.39289017514336, 33.53665615186689],[101.72101517514338, 38.866081722355915],[106.7132069666778, 33.18429652688876],[115.29132982091058, 36.190051824120644]];var polyline = new ol.geom.LineString(lineCoord);polyline.transform('EPSG:4326', 'EPSG:3857');const routeFeature = new ol.Feature({type: 'route',geometry: polyline,});const startMarker = new ol.Feature({type: 'icon',geometry: new ol.geom.Point(polyline.getFirstCoordinate()),});const endMarker = new ol.Feature({type: 'icon',geometry: new ol.geom.Point(polyline.getLastCoordinate()),});const position = startMarker.getGeometry().clone();const geoMarker = new ol.Feature({type: 'geoMarker',geometry: position,});const styles = {'route': new ol.style.Style({stroke: new ol.style.Stroke({width: 6,color: [237, 212, 0, 0.8],}),}),'icon': new ol.style.Style({image: new ol.style.Icon({anchor: [0.5, 1],src: '../openlayer/summary/node_blue.gif',}),}),'geoMarker': new ol.style.Style({image: new ol.style.RegularShape({radius: 14,points: 3,fill: new ol.style.Fill({color: '#00f'}),stroke: new ol.style.Stroke({color: '#fff',width: 2})}),// image: new ol.style.Icon({// 	anchor: [0.5, 1],// 	src: '../openlayer/summary/node_blue.gif',// }),stroke: new ol.style.Stroke({color: [0, 0, 255],width: 2}),fill: new ol.style.Fill({color: [0, 0, 255, 0.3]})}),};const vectorLayer = new ol.layer.Vector({source: new ol.source.Vector({features: [routeFeature, geoMarker, startMarker, endMarker],}),style: (feature) => {return styles[feature.get('type')];},})map.addLayer(vectorLayer);// 核心代码var anim, controler;function animateFeature() {if (routeFeature) {anim = new ol.featureAnimation.Path({path: routeFeature,rotate: true,easing: ol.easing.linear,speed: 500,// revers: true});anim.on('animationstart', (e) => {console.log('start')})/**anim.on('animating', (e) => {map.getView().setCenter(e.geom.getCoordinates())map.getView().setRotation(e.rotation || 0)})**/anim.on('animationend', (e) => {console.log('end')})controler = vectorLayer.animateFeature(geoMarker, anim);}}animateFeature()</script>
</html>

本示例官方地址:ol-ext: Openlayers feature animation

如果是react或者vue组件式开发,示例中html部分需要使用import方式引入ol,可以参考做以下修改

import { Vector as VectorLayer } from 'ol/layer';
import { Vector as VectorSource } from 'ol/source';
import Path from 'ol-ext/featureanimation/Path'
import { Style, Stroke, Fill, RegularShape, Icon } from 'ol/style.js';
import Feature from 'ol/Feature';
import { Point } from 'ol/geom';
import { easeOut, linear } from 'ol/easing';
import LineString from "ol/geom/LineString.js";// VectorLayer 、VectorSource 
const vectorLayer = new VectorLayer({source: new VectorSource({features: [routeFeature, geoMarker, startMarker, endMarker],}),style: (feature) => {return styles[feature.get('type')];},
})
// 动画核心代码
var anim, controler;
function animateFeature() {if (routeFeature) {anim = new Path({path: routeFeature,rotate: true,easing: linear,speed: 500,// revers: true});anim.on('animationstart', (e) => {console.log('start')})/**anim.on('animating', (e) => {map.getView().setCenter(e.geom.getCoordinates())map.getView().setRotation(e.rotation || 0)})**/anim.on('animationend', (e) => {console.log('end')})controler = vectorLayer.animateFeature(geoMarker, anim);}
}
animateFeature()

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

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

相关文章

使用pnnx将Torch模型转换为ncnn

1. 引言 以往我们将Torch模型转换为ncnn模型&#xff0c;通常需经过Torch–>onnx&#xff0c;onnx–>ncnn两个过程。但经常会出现某些算子不支持的问题。 ncnn作者针对该问题&#xff0c;直接开发一个Torch直接转换ncnn模型的工具 (PNNX)&#xff0c;以下为相关介绍及使…

Linux端口转发的几种常用方法

1. SSH 端口转发 SSH 提供了一个非常有意思的功能&#xff0c;就是端口转发&#xff0c;它能够将其他 TCP 端口的网络数据通过 SSH 链接来转发&#xff0c;并且自动提供了相应的加密及解密服务。 (1) 本地端口转发 ssh -fgN -L 2222:localhost:22 localhost (2) 远程端口转…

java查询结果的处理

java查询结果的处理 为了方便使用sql的数据&#xff0c;在查询后mysql会把数据封装到java里面的resultset对象&#xff0c;然后我们需要把resultset里的数据再封装到我们自己创建的对象中&#xff0c;比如Student对象&#xff1a; public class Student {int number;String n…

超快速排序

title: 超快速排序 date: 2024-01-05 11:51:43 tags: 逆序对 categories: 算法进阶指南 题目大意 解题思路 逆序数是一个序列每一个数的左边有多少比他本身大的值。将一个序列排序完整&#xff0c;最小交换次数即是逆序数之和。使用归并排序的同时&#xff0c;将每一个逆序数求…

C#用StringBuilder高效处理字符串

目录 一、背景 二、使用StringBuilder便捷、高效地操作字符串 三、实例 1.源码 2.生成效果 四、实例中知识点 1.StringBuilder类 &#xff08;1&#xff09;构造函数 &#xff08;2&#xff09;属性 &#xff08;3&#xff09;方法 2.Environment.NewLine 属性 一、…

SurfaceView和TextureView理解相关

一、为什么要使用SurfaceView 我们知道View是通过刷新来重绘视图&#xff0c;系统通过发出VSSYNC信号来进行屏幕的重绘&#xff0c;刷新的时间间隔是16ms,如果我们可以在16ms以内将绘制工作完成&#xff0c;则没有任何问题&#xff0c;如果我们绘制过程逻辑很复杂&#xff0c;…

SSD 颗粒还要涨价50%,入手前小心速度陷阱

大伙应该感受到了&#xff0c;自今年年中开始 SSD 普遍开始了小幅涨价。 但即便涨价到现在&#xff0c;NAND 厂商仍属于倒亏状态... 原因很简单&#xff0c;库存太多。 根据 TrendForce 的报道&#xff0c;主要制造商价格将需要再次上涨 40% 以上才能不亏&#xff0c;而达到盈…

【ZYNQ入门】第五篇、AXI HP口读写数据原理

目录 第一部分、AXI总线的相关知识 1、ZYNQ架构 2、AXI 总线和 AXI 接口以及 AXI 协议 3、AXI 总线与 ZYNQ 的关系 4、AXI 总线介绍 5、AXI 接口介绍 6、AXI 协议介绍 7、AXI高效传输的原因 8、常见总线汇总 9、HP接口写时序配置 10、HP DDR的地址分配 11、缓存一…

QT开源类库集合

QT开源类库集合 一、自定义控件 QSintQicsTableLongscroll-qtAdvanced Docking System 二、图表控件 QwtQCustomPlotJKQTPlotter 三、网络 QHttpEngineHTTP 四、 音视频 vlc-qt 五、多线程 tasks 六、数据库 EasyQtSql 一、自定义控件 1. QSint 源代码地址&#xff1a;QSint&…

如何缓解BOT攻击?分享灵活准确的防御之道

BOT流量在所有互联网流量中的占比过半&#xff0c;而且存在好坏之分。其中“好”的BOT&#xff0c;比如在互联网上搜索和查找内容的BOT&#xff0c;它们是我们不可或缺的帮手。恶意的BOT进行信息数据爬取、薅羊毛等攻击行为&#xff0c;正损害着企业和用户的利益。专业数据统计…

将文本文件导入Oracle数据库的简便方法:SQL Developer

需求 我有一个文本文件dbim.txt&#xff0c;是通过alert log生成的&#xff0c;内容如下&#xff1a; 2020-09-11 2020-09-11 ... 2023-12-03 2023-12-03 2023-12-26我已经在Oracle数据库中建立了目标表&#xff1a; create table dbim(a varchar(16));我想把日志文件导入Or…

Java IO 流面试题

1. Java 中有几种类型的流&#xff1f;JDK 为每种类型的流提供了哪些抽象类以供继承&#xff1f; 参考答案 基础流可以分为&#xff1a;字节流&#xff0c;字符流。字节流继承于 InputStream、OutputStream 抽象类&#xff0c;字符流继承于 Reader 和 Writer 抽象类。在 java.…

若依管理系统部署

本文章仅供参考&#xff0c;由于个软件版本不同可能会有偏差。 登录系统打开cmd 编辑文件 这些文件分别打开&#xff0c;打开后在浏览器会出现若依管理系统后台&#xff0c;输入账号 admin 密码 123456即可进入后台。 本文章仅供参考&#xff0c;由于个软件版本不同可能会有…

Linux内存管理:(六)页交换算法

文章说明&#xff1a; Linux内核版本&#xff1a;5.0 架构&#xff1a;ARM64 参考资料及图片来源&#xff1a;《奔跑吧Linux内核》 Linux 5.0内核源码注释仓库地址&#xff1a; zhangzihengya/LinuxSourceCode_v5.0_study (github.com) 1. 引言 在Linux操作系统中&#x…

synchronized锁的底层原理

synchronized 锁是 Java 中用于实现线程同步的关键字。它提供了一种简单而有效的方式来确保多个线程之间的互斥访问。底层原理可以通过 Java 的内存模型和对象监视器锁&#xff08;Monitor Lock&#xff09;来理解。 Monitor结构如下&#xff1a; 在 Java 的内存模型中&#x…

Spring Boot 与 Spring 框架的区别

一、前言 Spring Boot 和 Spring 框架是由 Spring 项目提供的两个关键的技术栈&#xff0c;它们在 Java 开发中扮演着不同的角色。在阐述其区别之前&#xff0c;我们先大致了解下这两个框架 二、Spring 框架 1、背景 Spring 框架是一个全栈的企业应用开发框架&#xff0c;起…

springboot社区养老服务系统设计与实现

&#x1f345;点赞收藏关注 → 私信领取本源代码、数据库&#x1f345; 本人在Java毕业设计领域有多年的经验&#xff0c;陆续会更新更多优质的Java实战项目希望你能有所收获&#xff0c;少走一些弯路。&#x1f345;关注我不迷路&#x1f345;一 、设计说明 1.1 研究背景 当…

【Vue.js设计与实现解读-1】

Vue设计与实现阅读-1 1、命令式和声明式2、性能3、虚拟DOM性能4、运行时和编译时5、总结 前言 最近工作清闲了些&#xff0c;想着很久没有看书&#xff0c;Vue.js设计与实现这本书看了好几次都没有读完&#xff0c;趁着这个机会边读边记录一下吧。如果有理解的不正确的地方&…

C#12新功能主构造函数:实用,简洁利落

大家还记得记录(record)类型吗&#xff1f;记录类型很像一个构造函数&#xff0c;那么类可以像record类型一样使用吗&#xff1f;C#12就推出了这样的功能&#xff0c;这就是主构造函数。“现在可以在任何 class 和 struct 中创建主构造函数。主构造函数不再局限于 record 类型。…

安全防御之入侵检测与防范技术

安全防御中的入侵检测与防范技术主要涉及到入侵检测系统&#xff08;IDS&#xff09;和入侵防御技术&#xff08;IPS&#xff09;。 入侵检测系统&#xff08;IDS&#xff09;是一种对入侵行为自动进行检测、监控和分析的软件与硬件的组合系统。IDS通过从计算机网络或系统中的若…