在没有map.onMouseMove的情况下在GoogleMaps中获取光标下的纬度和经度

发布于 2024-08-23 10:55:40 字数 721 浏览 3 评论 0 原文

我有 GoogleMaps 对象。我还有 GLatLng 格式的西南点和东北点。另外,我的对象上有 (x,y) 光标。我想知道光标下的GLatLng而不使用map.onMouseMove(仅使用DOM-onMouveMove)。我尝试编写 JavaScript 代码:

        var w = map.getSize().width;
        var h = map.getSize().height;
        var left = map.getBounds().getSouthWest().lat();
        var right = map.getBounds().getNorthEast().lat();
        var top = map.getBounds().getSouthWest().lng();
        var bottom = map.getBounds().getNorthEast().lng();
        var x = e.pageX - map_canvas.offsetLeft;
        var y = e.pageY - map_canvas.offsetTop;
        var lng = top + (bottom - top) * x * 1.0 / w;
        var lat = left + (right - left) * (h - y) * 1.0 / h;

但这样我的准确性不够。屏幕地理坐标的正常变换公式是什么?

I have GoogleMaps-object. Also I have SouthWest and NorthEast point in GLatLng-format. Also I have (x,y) of cursor over my object. I want know GLatLng under cursor without use map.onMouseMove (only use DOM-onMouveMove). I try write JavaScript-code:

        var w = map.getSize().width;
        var h = map.getSize().height;
        var left = map.getBounds().getSouthWest().lat();
        var right = map.getBounds().getNorthEast().lat();
        var top = map.getBounds().getSouthWest().lng();
        var bottom = map.getBounds().getNorthEast().lng();
        var x = e.pageX - map_canvas.offsetLeft;
        var y = e.pageY - map_canvas.offsetTop;
        var lng = top + (bottom - top) * x * 1.0 / w;
        var lat = left + (right - left) * (h - y) * 1.0 / h;

But in this way I do not have enough accuracy. What is the normal transformation formulas in the geographic coordinates of the screen?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

注定孤独终老 2024-08-30 10:55:40

我认为您可以使用 GMap2.fromContainerPixelToLatLng()GMap2.fromDivPixelToLatLng()

请参阅 坐标变换

I think you can use GMap2.fromContainerPixelToLatLng() or GMap2.fromDivPixelToLatLng()

See the documentation on Coordinate Transformations

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文