vue2中openlayers 在廊坊市添加聚合点,鼠标经过聚合点 显示名称

时间: 2023-10-01 12:04:49 浏览: 93
在Vue2中使用OpenLayers添加聚合点并显示名称,可以按照以下步骤进行: 1. 安装OpenLayers和ol-ext库。 ```bash npm install ol ol-ext --save ``` 2. 在Vue组件中引入OpenLayers和ol-ext库。 ```javascript import ol from 'ol' import 'ol/ol.css' import olExt from 'ol-ext' import 'ol-ext/dist/ol-ext.css' ``` 3. 在Vue组件中创建地图容器和地图对象。 ```javascript <template> <div class="map-container"> <div id="map" class="map"></div> </div> </template> <script> export default { data() { return { map: null } }, mounted() { this.initMap() }, methods: { initMap() { this.map = new ol.Map({ target: 'map', view: new ol.View({ center: ol.proj.fromLonLat([116.7, 39.5]), zoom: 10 }) }) } } } </script> <style scoped> .map-container { width: 100%; height: 100%; } .map { width: 100%; height: 100%; } </style> ``` 4. 创建聚合图层和聚合点。 ```javascript initMap() { const clusterSource = new ol.source.Cluster({ distance: 40, source: new ol.source.Vector({ features: [ new ol.Feature({ geometry: new ol.geom.Point(ol.proj.fromLonLat([116.7, 39.5])), name: '廊坊市' }), new ol.Feature({ geometry: new ol.geom.Point(ol.proj.fromLonLat([116.8, 39.5])), name: '广阳区' }), new ol.Feature({ geometry: new ol.geom.Point(ol.proj.fromLonLat([116.9, 39.5])), name: '香河县' }), new ol.Feature({ geometry: new ol.geom.Point(ol.proj.fromLonLat([117.0, 39.5])), name: '大城县' }), new ol.Feature({ geometry: new ol.geom.Point(ol.proj.fromLonLat([117.1, 39.5])), name: '文安县' }) ] }) }) const clusterLayer = new olExt.layer.Cluster({ source: clusterSource, distance: 40, animationDuration: 500, style: feature => { const count = feature.get('features').length const style = new ol.style.Style({ image: new ol.style.Circle({ radius: 15, stroke: new ol.style.Stroke({ color: 'white', width: 2 }), fill: new ol.style.Fill({ color: 'red' }) }), text: new ol.style.Text({ text: count.toString(), fill: new ol.style.Fill({ color: 'white' }), stroke: new ol.style.Stroke({ color: 'black', width: 2 }) }) }) return count === 1 ? this.createFeatureStyle(feature.get('features')[0]) : style } }) this.map.addLayer(clusterLayer) }, createFeatureStyle(feature) { return new ol.style.Style({ image: new ol.style.Circle({ radius: 15, stroke: new ol.style.Stroke({ color: 'white', width: 2 }), fill: new ol.style.Fill({ color: 'blue' }) }), text: new ol.style.Text({ text: feature.get('name'), fill: new ol.style.Fill({ color: 'white' }), stroke: new ol.style.Stroke({ color: 'black', width: 2 }) }) }) } ``` 5. 添加鼠标移动事件,显示聚合点名称。 ```javascript initMap() { const clusterSource = new ol.source.Cluster({ distance: 40, source: new ol.source.Vector({ features: [ new ol.Feature({ geometry: new ol.geom.Point(ol.proj.fromLonLat([116.7, 39.5])), name: '廊坊市' }), new ol.Feature({ geometry: new ol.geom.Point(ol.proj.fromLonLat([116.8, 39.5])), name: '广阳区' }), new ol.Feature({ geometry: new ol.geom.Point(ol.proj.fromLonLat([116.9, 39.5])), name: '香河县' }), new ol.Feature({ geometry: new ol.geom.Point(ol.proj.fromLonLat([117.0, 39.5])), name: '大城县' }), new ol.Feature({ geometry: new ol.geom.Point(ol.proj.fromLonLat([117.1, 39.5])), name: '文安县' }) ] }) }) const clusterLayer = new olExt.layer.Cluster({ source: clusterSource, distance: 40, animationDuration: 500, style: feature => { const count = feature.get('features').length const style = new ol.style.Style({ image: new ol.style.Circle({ radius: 15, stroke: new ol.style.Stroke({ color: 'white', width: 2 }), fill: new ol.style.Fill({ color: 'red' }) }), text: new ol.style.Text({ text: count.toString(), fill: new ol.style.Fill({ color: 'white' }), stroke: new ol.style.Stroke({ color: 'black', width: 2 }) }) }) return count === 1 ? this.createFeatureStyle(feature.get('features')[0]) : style } }) this.map.addLayer(clusterLayer) const overlay = new ol.Overlay({ element: document.getElementById('popup'), autoPan: true, autoPanAnimation: { duration: 250 } }) this.map.addOverlay(overlay) this.map.on('pointermove', evt => { const pixel = this.map.getEventPixel(evt.originalEvent) const feature = this.map.forEachFeatureAtPixel(pixel, feature => feature) if (feature) { const coordinates = feature.getGeometry().getCoordinates() overlay.setPosition(coordinates) document.getElementById('popup-content').innerText = feature.get('name') overlay.getElement().style.display = 'block' } else { overlay.getElement().style.display = 'none' } }) }, createFeatureStyle(feature) { return new ol.style.Style({ image: new ol.style.Circle({ radius: 15, stroke: new ol.style.Stroke({ color: 'white', width: 2 }), fill: new ol.style.Fill({ color: 'blue' }) }), text: new ol.style.Text({ text: feature.get('name'), fill: new ol.style.Fill({ color: 'white' }), stroke: new ol.style.Stroke({ color: 'black', width: 2 }) }) }) } ``` 6. 在模板中添加弹出框元素。 ```html <template> <div class="map-container"> <div id="map" class="map"></div> <div id="popup" class="ol-popup"> <div id="popup-content"></div> </div> </div> </template> <style scoped> .map-container { width: 100%; height: 100%; } .map { width: 100%; height: 100%; } .ol-popup { position: absolute; background-color: white; -webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2)); filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2)); padding: 15px; border-radius: 10px; border: 1px solid #cccccc; bottom: 12px; left: -50px; min-width: 100px; display: none; } .ol-popup:after, .ol-popup:before { top: 100%; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; } .ol-popup:after { border-top-color: white; border-width: 10px; left: 48%; margin-left: -10px; } .ol-popup:before { border-top-color: #cccccc; border-width: 11px; left: 48%; margin-left: -11px; } </style> ``` 这样就可以在Vue2中使用OpenLayers添加聚合点并显示名称了。
阅读全文

相关推荐

最新推荐

recommend-type

vue使用openlayers实现移动点动画

在Vue项目中,结合OpenLayers库实现移动点动画是一个常见的需求,这有助于为地图应用添加动态效果,例如模拟物体在地图上的移动轨迹。本示例主要讲解如何在Vue组件中设置和控制移动点动画。 首先,确保已经正确安装...
recommend-type

Vue实现鼠标经过文字显示悬浮框效果的示例代码

在Vue.js中,实现鼠标经过文字时显示悬浮框效果,通常涉及事件监听和DOM操作。以下是一个详细的步骤解释: 1. **需求分析**: 在Vue项目中,我们希望当鼠标移到特定的文字或按钮上时,能在鼠标附近显示一个悬浮框...
recommend-type

vue-openlayers实现地图坐标弹框效果

3. **弹窗覆盖物**:`Overlay`是OpenLayers中用于在地图上显示非图层内容的对象,如弹窗。在这里,我们创建了一个`Overlay`实例,并指定了弹窗的HTML元素(`this.$refs.popup`)以及自动调整(`autoPan`)和动画效果...
recommend-type

Openlayers实现点闪烁扩散效果

在OpenLayers中实现点的闪烁扩散效果是一种增强地图可视化的方式,可以使用户更加关注特定的地理位置。这个效果通过CSS动画和Overlay对象实现。以下是对实现这一效果的详细解释: 首先,我们要了解OpenLayers中的...
recommend-type

vue实现鼠标经过动画

在Vue.js中,实现鼠标经过动画可以通过监听`@mouseenter`和`@mouseleave`这两个事件来完成,同时结合CSS3的过渡效果(transition)和动画(animation)来改变元素的样式,从而达到动态视觉效果。以下将详细介绍这个...
recommend-type

简化填写流程:Annoying Form Completer插件

资源摘要信息:"Annoying Form Completer-crx插件" Annoying Form Completer是一个针对Google Chrome浏览器的扩展程序,其主要功能是帮助用户自动填充表单中的强制性字段。对于经常需要在线填写各种表单的用户来说,这是一个非常实用的工具,因为它可以节省大量时间,并减少因重复输入相同信息而产生的烦恼。 该扩展程序的描述中提到了用户在填写表格时遇到的麻烦——必须手动输入那些恼人的强制性字段。这些字段可能包括但不限于用户名、邮箱地址、电话号码等个人信息,以及各种密码、确认密码等重复性字段。Annoying Form Completer的出现,使这一问题得到了缓解。通过该扩展,用户可以在表格填充时减少到“一个压力……或两个”,意味着极大的方便和效率提升。 值得注意的是,描述中也使用了“抽浏览器”的表述,这可能意味着该扩展具备某种数据提取或自动化填充的机制,虽然这个表述不是一个标准的技术术语,它可能暗示该扩展程序能够从用户之前的行为或者保存的信息中提取必要数据并自动填充到表单中。 虽然该扩展程序具有很大的便利性,但用户在使用时仍需谨慎,因为自动填充个人信息涉及到隐私和安全问题。理想情况下,用户应该只在信任的网站上使用这种类型的扩展程序,并确保扩展程序是从可靠的来源获取,以避免潜在的安全风险。 根据【压缩包子文件的文件名称列表】中的信息,该扩展的文件名为“Annoying_Form_Completer.crx”。CRX是Google Chrome扩展的文件格式,它是一种压缩的包格式,包含了扩展的所有必要文件和元数据。用户可以通过在Chrome浏览器中访问chrome://extensions/页面,开启“开发者模式”,然后点击“加载已解压的扩展程序”按钮来安装CRX文件。 在标签部分,我们看到“扩展程序”这一关键词,它明确了该资源的性质——这是一个浏览器扩展。扩展程序通常是通过增加浏览器的功能或提供额外的服务来增强用户体验的小型软件包。这些程序可以极大地简化用户的网上活动,从保存密码、拦截广告到自定义网页界面等。 总结来看,Annoying Form Completer作为一个Google Chrome的扩展程序,提供了一个高效的解决方案,帮助用户自动化处理在线表单的填写过程,从而提高效率并减少填写表单时的麻烦。在享受便捷的同时,用户也应确保使用扩展程序时的安全性和隐私性。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

CC-LINK远程IO模块AJ65SBTB1现场应用指南:常见问题快速解决

# 摘要 CC-LINK远程IO模块作为一种工业通信技术,为自动化和控制系统提供了高效的数据交换和设备管理能力。本文首先概述了CC-LINK远程IO模块的基础知识,接着详细介绍了其安装与配置流程,包括硬件的物理连接和系统集成要求,以及软件的参数设置与优化。为应对潜在的故障问题,本文还提供了故障诊断与排除的方法,并探讨了故障解决的实践案例。在高级应用方面,文中讲述了如何进行编程与控制,以及如何实现系统扩展与集成。最后,本文强调了CC-LINK远程IO模块的维护与管理的重要性,并对未来技术发展趋势进行了展望。 # 关键字 CC-LINK远程IO模块;系统集成;故障诊断;性能优化;编程与控制;维护
recommend-type

使用MATLAB写一个在柱坐标系中实现以下功能的代码:1) 生成具有损耗的平面电磁波模型;2) 调整电场分量Ex和Ey的幅度和相位,以仿真三种极化的形成?

在MATLAB中,处理电磁学问题通常需要利用`physconst`、`polar2cartesian`等函数库。以下是一个简化的示例,展示了如何生成一个基本的平面电磁波模型,并调整电场分量的幅度和相位。请注意,实际的损耗模型通常会涉及到复杂的阻抗和吸收系数,这里我们将简化为理想情况。 ```matlab % 初始化必要的物理常数 c = physconst('LightSpeed'); % 光速 omega = 2*pi * 5e9; % 角频率 (例如 GHz) eps0 = physconst('PermittivityOfFreeSpace'); % 真空介电常数 % 定义网格参数
recommend-type

TeraData技术解析与应用

资源摘要信息: "TeraData是一个高性能、高可扩展性的数据仓库和数据库管理系统,它支持大规模的数据存储和复杂的数据分析处理。TeraData的产品线主要面向大型企业级市场,提供多种数据仓库解决方案,包括并行数据仓库和云数据仓库等。由于其强大的分析能力和出色的处理速度,TeraData被广泛应用于银行、电信、制造、零售和其他需要处理大量数据的行业。TeraData系统通常采用MPP(大规模并行处理)架构,这意味着它可以通过并行处理多个计算任务来显著提高性能和吞吐量。" 由于提供的信息中描述部分也是"TeraData",且没有详细的内容,所以无法进一步提供关于该描述的详细知识点。而标签和压缩包子文件的文件名称列表也没有提供更多的信息。 在讨论TeraData时,我们可以深入了解以下几个关键知识点: 1. **MPP架构**:TeraData使用大规模并行处理(MPP)架构,这种架构允许系统通过大量并行运行的处理器来分散任务,从而实现高速数据处理。在MPP系统中,数据通常分布在多个节点上,每个节点负责一部分数据的处理工作,这样能够有效减少数据传输的时间,提高整体的处理效率。 2. **并行数据仓库**:TeraData提供并行数据仓库解决方案,这是针对大数据环境优化设计的数据库架构。它允许同时对数据进行读取和写入操作,同时能够支持对大量数据进行高效查询和复杂分析。 3. **数据仓库与BI**:TeraData系统经常与商业智能(BI)工具结合使用。数据仓库可以收集和整理来自不同业务系统的数据,BI工具则能够帮助用户进行数据分析和决策支持。TeraData的数据仓库解决方案提供了一整套的数据分析工具,包括但不限于ETL(抽取、转换、加载)工具、数据挖掘工具和OLAP(在线分析处理)功能。 4. **云数据仓库**:除了传统的本地部署解决方案,TeraData也在云端提供了数据仓库服务。云数据仓库通常更灵活、更具可伸缩性,可根据用户的需求动态调整资源分配,同时降低了企业的运维成本。 5. **高可用性和扩展性**:TeraData系统设计之初就考虑了高可用性和可扩展性。系统可以通过增加更多的处理节点来线性提升性能,同时提供了多种数据保护措施以保证数据的安全和系统的稳定运行。 6. **优化与调优**:对于数据仓库而言,性能优化是一个重要的环节。TeraData提供了一系列的优化工具和方法,比如SQL调优、索引策略和执行计划分析等,来帮助用户优化查询性能和提高数据访问效率。 7. **行业应用案例**:在金融、电信、制造等行业中,TeraData可以处理海量的交易数据、客户信息和业务数据,它在欺诈检测、客户关系管理、供应链优化等关键业务领域发挥重要作用。 8. **集成与兼容性**:TeraData系统支持与多种不同的业务应用和工具进行集成。它也遵循行业标准,能够与其他数据源、分析工具和应用程序无缝集成,为用户提供一致的用户体验。 以上便是关于TeraData的知识点介绍。由于文件描述内容重复且过于简略,未能提供更深层次的介绍,如果需要进一步详细的知识,建议参考TeraData官方文档或相关技术文章以获取更多的专业信息。