点击(右键单击)使用传单地图库获取图像叠加的像素坐标

问题描述 投票:9回答:4

我正在尝试使用传单地图库在点击(右键单击/上下文菜单)上获取图像叠加的像素坐标。基本上当用户点击图像时,我需要找到用户点击图像的x,y或宽度,高度。

目前这就是我所拥有的。

// Using leaflet.js to pan and zoom a big image.
// See also: http://kempe.net/blog/2014/06/14/leaflet-pan-zoom-image.html

// create the slippy map
var map = L.map('image-map', {
    minZoom: 1,
    maxZoom: 4,
    center: [0, 0],
    zoom: 1,
    crs: L.CRS.Simple,
});

// dimensions of the image
var w = 2000,
    h = 1500,
    url = 'http://kempe.net/images/newspaper-big.jpg';

// calculate the edges of the image, in coordinate space
var southWest = map.unproject([0, h], map.getMaxZoom() - 1);
var northEast = map.unproject([w, 0], map.getMaxZoom() - 1);
var bounds = new L.LatLngBounds(southWest, northEast);

// add the image overlay, 
// so that it covers the entire map
L.imageOverlay(url, bounds).addTo(map);

// tell leaflet that the map is exactly as big as the image
map.setMaxBounds(bounds);

function onMapClick(e) {

 //returns on right click events   
 console.log(e);


}

//Hadnel on right click functions TODO: MOVE THIS LATER
map.on('contextmenu', onMapClick);

目前onMapClick(e)在点击时检查返回的事件时,我看不到所有返回坐标的证据,即我点击的位置的x,y或宽度和高度附近。

基本上我想看到的是x,y或宽度,我点击的图像位置的高度,因为图像的尺寸是20000x15000。

这是小提琴http://jsfiddle.net/rayshinn/yvfwzfw4/1/

不确定为什么但是当你一直缩放时它看起来有点儿麻烦。只需缩放即可停止jsfiddle上的错误。这个错误不是焦点,因为它不会发生在我的本地环境中!似乎与小提琴有关。

javascript google-maps-api-3 maps leaflet
4个回答
11
投票

小册子为您提供沿着“图像映射”div的x,y坐标,它通过放大和缩小来调整大小。事件坐标不会缩放到图像大小。

为了获得相对于实际图片尺寸的x,y,您需要将坐标与当前div尺寸和全尺寸图像尺寸的比率相乘。

Check my Fiddle

我通过获取事件坐标,将它们乘以var wvar h并将它们除以地图的高度和宽度来计算你的x,y:

function onMapClick(e) {

    var mapWidth=map._container.offsetWidth;
    var mapHeight=map._container.offsetHeight;
    console.log(e.containerPoint.x * w / mapWidth);
    console.log(e.containerPoint.y * h / mapHeight);
    console.log(e);


}

8
投票

要解决此问题,您需要利用地图项目将纬度和经度转换为图像中的坐标。

地图上的Project方法很神奇

http://leafletjs.com/reference.html#map-conversion-methods

投影将为您提供图像中的X,Y。将基于图像缩放的方式(即地图缩放级别)来缩放这些值。

计算点击的自然(X,Y)只是计算地图边界或覆盖尺寸的比例,然后将其除以投影的点击坐标。

  1. 在变量中创建imageOverlay存储时。需要参考它来确定图像层的比例因子。
  2. 在单击项目上,将点击的lat lng转换为(x,y)坐标
  3. 用自然的宽度和高度划分图像的当前宽度和高度(你需要这样做来处理由地图缩放引起的尺寸变化)
  4. 将投影点击坐标除以比例因子。这将返回原始图像中实际的X,Y坐标,这是我认为你想要的。下面的代码并查看工具示例的小提琴。 http://jsfiddle.net/muglio/h5st7bpt/

.

// so that it covers the entire map
var overlay = L.imageOverlay(url, bounds)
overlay.addTo(map);

// tell leaflet that the map is exactly as big as the image
map.setMaxBounds(bounds);

function onMapClick(e) {
    //Project the map click to x,y coordinates
    //This projection is the actual XY coordinates of the image layer
    //This coordinate is scaled by the amount the image is zoomed.
    var clientClick = map.project(e.latlng);

    //Grab the original overlay
    var overlayImage = overlay._image;

    //Calculate the current image ratio from the original (deals with zoom)
    var yR = overlayImage.clientHeight / overlayImage.naturalHeight;
    var xR = overlayImage.clientWidth / overlayImage.naturalWidth;

    //scale the click coordinates to the original dimensions
    //basically compensating for the scaling calculated by the map projection
    var x = clientClick.x / xR;
    var y = clientClick.y / yR;
    console.log(x,y);
}

希望这可以帮助!


0
投票

我不知道传单,但你不需要它来实现这一点。使用javascript,您可以实现一个监听器并在标记中使用event.latLng来操作信息。

google.maps.event.addListener(map, 'click', function(event) {
    marker.setPosition(event.latLng);   
});

检查this working fiddle


0
投票

您正在接收containerPoint,当您现在触发contextmenu事件时,它包含x和y坐标放置(容器方式)。您知道/可以检索Map容器​​的尺寸,并且您知道图像的原生尺寸.shouldn这还不足以进行计算吗?

例如,如果您知道地图容器宽度为1000px ...并且您收到一个上下文菜单事件,其中x坐标为500 ...那么您知道有人直接在中心点击,因为500/1000(地图容器宽度)= 0.5并且表示图像上的实际位置是原始宽度(2000,根据您的变量w)* 0.5 = 1000。

© www.soinside.com 2019 - 2024. All rights reserved.