四十四、openlayers官网示例Geographic Coordinates解析——在地图上添加弹窗,点击显示图形信息

本文主要是介绍四十四、openlayers官网示例Geographic Coordinates解析——在地图上添加弹窗,点击显示图形信息,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

使用Overlay在地图上添加弹窗,点击控制显隐。

初始化图层的时候,添加一个矢量的点数据到地图上,在new Feature时添加一些自定义属性。

  const place = [-110, 45];const point = new Point(place);const map = new Map({target: "map",view: new View({center: place,zoom: 8,}),layers: [new TileLayer({source: new StadiaMaps({layer: "outdoors",}),}),new VectorLayer({source: new VectorSource({features: [new Feature({ geometry: point, name: "sss", color: "red" }),],}),style: {"circle-radius": 20,"circle-fill-color": "red",},}),],});

 写一个元素,用来展示信息。

 <div id="map" class="map"><div id="popup"><div>name:{{ message.name }}</div><div>color:{{ message.color }}</div><div class="triangle"></div></div></div>

添加一些样式。 

#popup {width: 160px;height: 80px;border-radius: 10px;background: #fff;position: absolute;padding: 10px;box-sizing: border-box;
}
.triangle {position: absolute;left: 50%;transform: translateX(-50%);bottom: -20px;border-top: 10px solid #fff;border-bottom: 10px solid transparent;border-left: 10px solid transparent;border-right: 10px solid transparent;
}

创建overlay实例 ,offset是偏移量,根据写的元素大小调节。

 const element = document.getElementById("popup");const popup = new Overlay({element: element,stopEvent: false,offset:[-80,-120],});map.addOverlay(popup);

 点击地图的时候,获取图形的信息并给 this.message赋值。

 map.on("click", (event) => {if (popover) {popover.dispose();popover = undefined;}const feature = map.getFeaturesAtPixel(event.pixel)[0];if (!feature) {popup.setPosition(undefined);return;}const coordinate = feature.getGeometry().getCoordinates();popup.setPosition(coordinate);this.message.name = feature.get("name");this.message.color = feature.get("color");});

 完整代码:

<template><div class="box"><h1>Geographic Coordinates</h1><div id="map" class="map"><div id="popup"><div>name:{{ message.name }}</div><div>color:{{ message.color }}</div><div class="triangle"></div></div></div><div id="info"></div></div>
</template><script>
import { Feature, Map, Overlay, View } from "ol/index.js";
import { OSM, Vector as VectorSource } from "ol/source.js";
import { Point } from "ol/geom.js";
import { Tile as TileLayer, Vector as VectorLayer } from "ol/layer.js";
import { useGeographic } from "ol/proj.js";
import StadiaMaps from "ol/source/StadiaMaps.js";
export default {name: "",components: {},data() {return {map: null,extentData: "",message: {name: "",color: "",},};},computed: {},created() {},mounted() {useGeographic();const place = [-110, 45];const point = new Point(place);const map = new Map({target: "map",view: new View({center: place,zoom: 8,}),layers: [new TileLayer({source: new StadiaMaps({layer: "outdoors",}),}),new VectorLayer({source: new VectorSource({features: [new Feature({ geometry: point, name: "sss", color: "red" }),],}),style: {"circle-radius": 20,"circle-fill-color": "red",},}),],});const element = document.getElementById("popup");const popup = new Overlay({element: element,stopEvent: false,offset:[-80,-120],});map.addOverlay(popup);function formatCoordinate(coordinate) {return `<table><tbody><tr><th>lon</th><td>${coordinate[0].toFixed(2)}</td></tr><tr><th>lat</th><td>${coordinate[1].toFixed(2)}</td></tr></tbody></table>`;}const info = document.getElementById("info");map.on("moveend", function () {const view = map.getView();const center = view.getCenter();info.innerHTML = formatCoordinate(center);});let popover;map.on("click", (event) => {if (popover) {popover.dispose();popover = undefined;}const feature = map.getFeaturesAtPixel(event.pixel)[0];if (!feature) {popup.setPosition(undefined);return;}const coordinate = feature.getGeometry().getCoordinates();popup.setPosition(coordinate);this.message.name = feature.get("name");this.message.color = feature.get("color");});map.on("pointermove", function (event) {const type = map.hasFeatureAtPixel(event.pixel) ? "pointer" : "inherit";map.getViewport().style.cursor = type;});},methods: {},
};
</script><style lang="scss" scoped>
#map {width: 100%;height: 500px;
}
.box {height: 100%;
}
#popup {width: 160px;height: 80px;border-radius: 10px;background: #fff;position: absolute;padding: 10px;box-sizing: border-box;
}
.triangle {position: absolute;left: 50%;transform: translateX(-50%);bottom: -20px;border-top: 10px solid #fff;border-bottom: 10px solid transparent;border-left: 10px solid transparent;border-right: 10px solid transparent;
}
</style>

这篇关于四十四、openlayers官网示例Geographic Coordinates解析——在地图上添加弹窗,点击显示图形信息的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

SpringBoot使用Apache Tika检测敏感信息

《SpringBoot使用ApacheTika检测敏感信息》ApacheTika是一个功能强大的内容分析工具,它能够从多种文件格式中提取文本、元数据以及其他结构化信息,下面我们来看看如何使用Ap... 目录Tika 主要特性1. 多格式支持2. 自动文件类型检测3. 文本和元数据提取4. 支持 OCR(光学

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

C#实现获取电脑中的端口号和硬件信息

《C#实现获取电脑中的端口号和硬件信息》这篇文章主要为大家详细介绍了C#实现获取电脑中的端口号和硬件信息的相关方法,文中的示例代码讲解详细,有需要的小伙伴可以参考一下... 我们经常在使用一个串口软件的时候,发现软件中的端口号并不是普通的COM1,而是带有硬件信息的。那么如果我们使用C#编写软件时候,如

Redis延迟队列的实现示例

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

通过C#获取PDF中指定文本或所有文本的字体信息

《通过C#获取PDF中指定文本或所有文本的字体信息》在设计和出版行业中,字体的选择和使用对最终作品的质量有着重要影响,然而,有时我们可能会遇到包含未知字体的PDF文件,这使得我们无法准确地复制或修改文... 目录引言C# 获取PDF中指定文本的字体信息C# 获取PDF文档中用到的所有字体信息引言在设计和出

在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剪切视频合并视频转换视频结论介绍