Preface:How to get the coordinates of the current mouse in the Vue project? Here is a method to share. Result: Implementation steps:1. Import relevant documents import MousePosition from 'ol/control/MousePosition'; import {createStringXY} from 'ol/coordinate'; 2. Generate a map var layers = [ //Dark blue background 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. Add mouse events var mousePositionControl = new MousePosition({ coordinateFormat: createStringXY(6), //Get the location projection: 'EPSG:4326', className: 'custom-mouse-position', target: document.getElementById('mouse-position'), //Put the position data there undefinedHTML: ' ' }); this.map.addControl(mousePositionControl); 4. Add on the page <div id="map" class="map" ref="imageDom"> Position 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> This is the end of this article about vue+openlayer5 getting the coordinates of the current mouse. For more relevant vue+openlayer5 mouse coordinates content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Three uses and differences of MySQL not equal
>>: Introduction to the use of select optgroup tag in html
Install pymysql pip install pymysql 2|0Using pymy...
Problem: When using JDBC to connect to the MySQL ...
1. Composite primary key The so-called composite ...
Copy code The code is as follows: a:link { font-s...
When encapsulating Vue components, I will still u...
Preface This chapter uses basic Linux functions a...
Table of contents 2. Field concatenation 2. Give ...
Introduction to jQuery The jQuery library can be ...
Application scenario 1: Domain name-based redirec...
This article describes how to install mysql5.6 us...
Beginners can learn HTML by understanding some HT...
Copy code The code is as follows: wmode parameter...
accomplish This effect is difficult to replicate ...
Table of contents Creating Arrays in JavaScript U...
1. Mirror images disappear in 50 and 93 [root@h50...