您当前的位置:首页 > 网站建设 > javascript
| php | asp | css | H5 | javascript | Mysql | Dreamweaver | Delphi | 网站维护 | 帝国cms | React | 考试系统 | ajax | jQuery | 小程序 |

vue+openlayer5获取当前鼠标滑过的坐标实现方法

51自学网 2022-02-21 13:37:32
  javascript

前言:       

 在vue项目中怎么获取当前鼠标划过的坐标呢,这里来分享下方法。 实现效果:

实现步骤:

1、引入相关文件

import MousePosition from 'ol/control/MousePosition';import {createStringXY} from 'ol/coordinate';

 2、生成地图

var layers = [        //深蓝色背景        new TileLayer({           source: new XYZ({             url:              "https://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetPurplishBlue/MapServer/tile/{z}/{y}/{x}",           }),         }),             ];this.map = new Map({        layers: layers,        target: "map",        view: new View({          center: this.center,          projection: this.projection,          zoom: this.centerSize,          maxZoom: 17,          minZoom: 5,          extent: [            73.32783475401652, 3.33795, 135.16017906160056,            53.83501005646246,          ],        }),      });

3、加入鼠标事件

var mousePositionControl = new MousePosition({         coordinateFormat: createStringXY(6),//获取位置         projection: 'EPSG:4326',         className: 'custom-mouse-position',         target: document.getElementById('mouse-position'), //将位置数据放到那里         undefinedHTML: '&nbsp'      });      this.map.addControl(mousePositionControl);

4、页面上加入

<div id="map" class="map" ref="imageDom">     位置div    <div id="mouse-position" style="        color: #fff;        position: absolute;        bottom:10px;        right:10px;        z-index: 10000000;        width: 200px;        line-height: 30px;        background: rgba(0,0,0,0.5);    "></div></div>

到此这篇关于vue+openlayer5获取当前鼠标滑过的坐标的文章就介绍到这了,更多相关vue+openlayer5鼠标坐标内容请搜索51zixue.net以前的文章或继续浏览下面的相关文章希望大家以后多多支持51zixue.net!


下载地址:
element ui表格实现下拉筛选功能
vue中路由跳转的方式有哪些你知道吗
万事OK自学网:51自学网_软件自学网_CAD自学网自学excel、自学PS、自学CAD、自学C语言、自学css3实例,是一个通过网络自主学习工作技能的自学平台,网友喜欢的软件自学网站。