使用OSM和Leaflet在自定义地砖上渲染图标

问题描述 投票:0回答:2

我需要将谷歌地图的一些功能转换为Leaflet和OSM。我有一个室内访客跟踪应用程序,使用谷歌地图与自定义瓷砖(室内平面图图像)。它通过将X Y坐标转换为Lat Lng来绘制访客(室内)位置上的标记。它完成了

function findLatLangFromImagePixel(imgPixel) {
    var scalingRatio = ImageWidth / 256;
    var pixel = { x: ((imgPixel.X) / scalingRatio), y: ((imgPixel.Y) / scalingRatio) };

    var point = new google.maps.Point(pixel.x + 0.5, pixel.y + 0.5);
    return map.getProjection().fromPointToLatLng(point);
}

enter image description here

在Leaflet地图中,我尝试使用以下代码来实现相同的结果(使用相同的图像/切片):

var x = ImageXYLocation.X;
            var y = ImageXYLocation.Y;
            var scalingRatio = ImageWidth / 256;
            var pixel = { x: ((x) / scalingRatio), y: ((y) / scalingRatio) };
var pointXY = L.point(pixel.x + 0.5, pixel.y +0.5);

            latlng = map.layerPointToLatLng(pointXY);
latlng.lng += 180;

但我得到了不同的结果。此外,我观察到当标记在更改屏幕分辨率时切换其在室内地图上的位置。似乎标记位置取决于我的屏幕分辨率或缩放级别。 enter image description here

和第二缩放级别enter image description here

更新:地图初始化代码如下:

 if (map != null) {
            map.remove();
        }
        $("#map_canvas").html("");

        map = L.map('map_canvas', {
            minZoom: 1,
            maxZoom: 4,
            center: [0, 0],
            zoom: 1,
            crs: L.CRS.Simple,
        });
        var w = 6095,
            h = 3410;
        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);
        L.tileLayer('./tiles/{z}/{x}/{y}.png', {
            maxZoom: 16,
            minZoom: 0,
            continuousWorld: false,
            bounds: bounds,
            attribution: '&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
        }).addTo(map);

        map.setZoom(5);
        map.setMaxBounds(bounds);

        map.zoomControl.setPosition('bottomright');

更新2:

enter image description here

google-maps leaflet maps openstreetmap google-indoor-maps
2个回答
0
投票

似乎标记位置取决于我的屏幕分辨率或缩放级别。

确实。你正在使用layerPointToLatLng()according to the documentation(强调我的)......

给定相对于原点像素的像素坐标,返回相应的地理坐标(对于当前缩放级别)。

传单有curious way of hiding the complexities of CRSs和投影。如果没有看到更多用于定义地图CRS的代码或室内地图图像的边界,除了“注意坐标的含义”之外,不可能提供任何建议。


0
投票

谢谢你的指导。我已经找到了解决方案。我使用以下代码来获取正确的LatLng

var x = ImageXYLocation.X;
var y = ImageXYLocation.Y;
var scalingRatio = ImageWidth / 256;
var pixel = { x: ((x / scalingRatio) * Math.pow(2, map.getZoom())), y: ((y / scalingRatio) * Math.pow(2, map.getZoom())) };

var pointXY = L.point(pixel.x + 0.5, pixel.y +0.5);

latlng = map.unproject(L.point(pixel.x, pixel.y));
© www.soinside.com 2019 - 2024. All rights reserved.