三十五、openlayers官网示例Dynamic Data——在地图上加载动态数据形成动画效果

本文主要是介绍三十五、openlayers官网示例Dynamic Data——在地图上加载动态数据形成动画效果,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

官网demo地址:

 Dynamic Data

 初始化地图

 const tileLayer = new TileLayer({source: new OSM(),});const map = new Map({layers: [tileLayer],target: "map",view: new View({center: [0, 0],zoom: 2,}),});

    创建了三个样式

const imageStyle = new Style({image: new CircleStyle({radius: 5,fill: new Fill({ color: "yellow" }),stroke: new Stroke({ color: "red", width: 1 }),}),});const headInnerImageStyle = new Style({image: new CircleStyle({radius: 2,fill: new Fill({ color: "blue" }),}),});const headOuterImageStyle = new Style({image: new CircleStyle({radius: 5,fill: new Fill({ color: "black" }),}),});

绘制动画效果主要还是利用了postrender事件,其原理解析可以参考这篇

十八、openlayers官网示例Custom Animation解析——地图上添加自定义动画、圆圈涟漪效果_unbykey(listenerkey);-CSDN博客

// 点的数量,用于定义图形的分辨率const n = 200;// 角速度常量,用于计算当前时间的角度const omegaTheta = 30000;// 大圆的半径const R = 7e6;// 小圆的半径const r = 2e6;// 距离小圆中心的点的距离const p = 2e6;tileLayer.on("postrender", function (event) {//获取渲染上下文和帧状态//用于在地图上绘制矢量图形const vectorContext = getVectorContext(event);//包含当前帧的状态,包括时间信息const frameState = event.frameState;//计算当前角度 theta 根据当前时间和 omegaTheta 计算当前角度 theta,用于动画效果const theta = (2 * Math.PI * frameState.time) / omegaTheta;//生成外旋轮线的坐标数组const coordinates = [];let i;for (i = 0; i < n; ++i) {const t = theta + (2 * Math.PI * i) / n;const x = (R + r) * Math.cos(t) + p * Math.cos(((R + r) * t) / r);const y = (R + r) * Math.sin(t) + p * Math.sin(((R + r) * t) / r);coordinates.push([x, y]);}vectorContext.setStyle(imageStyle);//设置样式 imageStyle 并绘制多点几何(MultiPoint)vectorContext.drawGeometry(new MultiPoint(coordinates));const headPoint = new Point(coordinates[coordinates.length - 1]);//将头部的圆标注出来设置成不同样式vectorContext.setStyle(headOuterImageStyle);vectorContext.drawGeometry(headPoint);vectorContext.setStyle(headInnerImageStyle);vectorContext.drawGeometry(headPoint);//强制重新渲染地图map.render();});

完整代码:

<template><div class="box"><h1>Dynamic Data动态数据</h1><div id="map"></div></div>
</template><script>
import Map from "ol/Map.js";
import OSM from "ol/source/OSM.js";
import TileLayer from "ol/layer/Tile.js";
import View from "ol/View.js";
import { Circle as CircleStyle, Fill, Stroke, Style } from "ol/style.js";
import { MultiPoint, Point } from "ol/geom.js";
import { getVectorContext } from "ol/render.js";
export default {name: "",components: {},data() {return {map: null,};},computed: {},created() {},mounted() {const tileLayer = new TileLayer({source: new OSM(),});const map = new Map({layers: [tileLayer],target: "map",view: new View({center: [0, 0],zoom: 2,}),});const imageStyle = new Style({image: new CircleStyle({radius: 5,fill: new Fill({ color: "yellow" }),stroke: new Stroke({ color: "red", width: 1 }),}),});const headInnerImageStyle = new Style({image: new CircleStyle({radius: 2,fill: new Fill({ color: "blue" }),}),});const headOuterImageStyle = new Style({image: new CircleStyle({radius: 5,fill: new Fill({ color: "black" }),}),});// 点的数量,用于定义图形的分辨率const n = 200;// 角速度常量,用于计算当前时间的角度const omegaTheta = 30000;// 大圆的半径const R = 7e6;// 小圆的半径const r = 2e6;// 距离小圆中心的点的距离const p = 2e6;tileLayer.on("postrender", function (event) {//获取渲染上下文和帧状态//用于在地图上绘制矢量图形const vectorContext = getVectorContext(event);//包含当前帧的状态,包括时间信息const frameState = event.frameState;//计算当前角度 theta 根据当前时间和 omegaTheta 计算当前角度 theta,用于动画效果const theta = (2 * Math.PI * frameState.time) / omegaTheta;//生成外旋轮线的坐标数组const coordinates = [];let i;for (i = 0; i < n; ++i) {const t = theta + (2 * Math.PI * i) / n;const x = (R + r) * Math.cos(t) + p * Math.cos(((R + r) * t) / r);const y = (R + r) * Math.sin(t) + p * Math.sin(((R + r) * t) / r);coordinates.push([x, y]);}vectorContext.setStyle(imageStyle);//设置样式 imageStyle 并绘制多点几何(MultiPoint)vectorContext.drawGeometry(new MultiPoint(coordinates));const headPoint = new Point(coordinates[coordinates.length - 1]);//将头部的圆标注出来设置成不同样式vectorContext.setStyle(headOuterImageStyle);vectorContext.drawGeometry(headPoint);vectorContext.setStyle(headInnerImageStyle);vectorContext.drawGeometry(headPoint);//强制重新渲染地图map.render();});map.render();},methods: {},
};
</script><style lang="scss" scoped>
#map {width: 100%;height: 500px;
}
.box {height: 100%;
}
</style>

这篇关于三十五、openlayers官网示例Dynamic Data——在地图上加载动态数据形成动画效果的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1028921

相关文章

python实现pdf转word和excel的示例代码

《python实现pdf转word和excel的示例代码》本文主要介绍了python实现pdf转word和excel的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录一、引言二、python编程1,PDF转Word2,PDF转Excel三、前端页面效果展示总结一

在MyBatis的XML映射文件中<trim>元素所有场景下的完整使用示例代码

《在MyBatis的XML映射文件中<trim>元素所有场景下的完整使用示例代码》在MyBatis的XML映射文件中,trim元素用于动态添加SQL语句的一部分,处理前缀、后缀及多余的逗号或连接符,示... 在MyBATis的XML映射文件中,<trim>元素用于动态地添加SQL语句的一部分,例如SET或W

Redis延迟队列的实现示例

《Redis延迟队列的实现示例》Redis延迟队列是一种使用Redis实现的消息队列,本文主要介绍了Redis延迟队列的实现示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习... 目录一、什么是 Redis 延迟队列二、实现原理三、Java 代码示例四、注意事项五、使用 Redi

SpringBoot项目启动后自动加载系统配置的多种实现方式

《SpringBoot项目启动后自动加载系统配置的多种实现方式》:本文主要介绍SpringBoot项目启动后自动加载系统配置的多种实现方式,并通过代码示例讲解的非常详细,对大家的学习或工作有一定的... 目录1. 使用 CommandLineRunner实现方式:2. 使用 ApplicationRunne

在Pandas中进行数据重命名的方法示例

《在Pandas中进行数据重命名的方法示例》Pandas作为Python中最流行的数据处理库,提供了强大的数据操作功能,其中数据重命名是常见且基础的操作之一,本文将通过简洁明了的讲解和丰富的代码示例,... 目录一、引言二、Pandas rename方法简介三、列名重命名3.1 使用字典进行列名重命名3.编

Python使用Colorama库美化终端输出的操作示例

《Python使用Colorama库美化终端输出的操作示例》在开发命令行工具或调试程序时,我们可能会希望通过颜色来区分重要信息,比如警告、错误、提示等,而Colorama是一个简单易用的Python库... 目录python Colorama 库详解:终端输出美化的神器1. Colorama 是什么?2.

Go Gorm 示例详解

《GoGorm示例详解》Gorm是一款高性能的GolangORM库,便于开发人员提高效率,本文介绍了Gorm的基本概念、数据库连接、基本操作(创建表、新增记录、查询记录、修改记录、删除记录)等,本... 目录1. 概念2. 数据库连接2.1 安装依赖2.2 连接数据库3. 数据库基本操作3.1 创建表(表关

Python视频剪辑合并操作的实现示例

《Python视频剪辑合并操作的实现示例》很多人在创作视频时都需要进行剪辑,本文主要介绍了Python视频剪辑合并操作的实现示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习... 目录介绍安装FFmpegWindowsMACOS安装MoviePy剪切视频合并视频转换视频结论介绍

python多进程实现数据共享的示例代码

《python多进程实现数据共享的示例代码》本文介绍了Python中多进程实现数据共享的方法,包括使用multiprocessing模块和manager模块这两种方法,具有一定的参考价值,感兴趣的可以... 目录背景进程、进程创建进程间通信 进程间共享数据共享list实践背景 安卓ui自动化框架,使用的是

SpringBoot项目删除Bean或者不加载Bean的问题解决

《SpringBoot项目删除Bean或者不加载Bean的问题解决》文章介绍了在SpringBoot项目中如何使用@ComponentScan注解和自定义过滤器实现不加载某些Bean的方法,本文通过实... 使用@ComponentScan注解中的@ComponentScan.Filter标记不加载。@C