如何从位置(x,y)获取谷歌地图v3上的位置(纬度/经度)

发布于 2024-09-16 03:27:23 字数 163 浏览 6 评论 0原文

我有 (x,y)

(event.pageX-$("#map_canvas").offset().left,event.pageY-$("#map_canvas").offset().top)

但如何获得 (lat,lng)

谢谢

i have the (x,y)

(event.pageX-$("#map_canvas").offset().left,event.pageY-$("#map_canvas").offset().top)

but how to get the (lat,lng)

thanks

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

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

发布评论

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

评论(3

可爱暴击 2024-09-23 03:27:23

在地图的初始化函数中定义:

var overlay;
overlay = new google.maps.OverlayView();
overlay.draw = function() {};
overlay.setMap(map);

下一步当您想要获取位置时运行:

var point=new google.maps.Point(x,y);
var location=$overlay.getProjection().fromContainerPixelToLatLng(point); 

最佳
K

In your initialize function for a map define:

var overlay;
overlay = new google.maps.OverlayView();
overlay.draw = function() {};
overlay.setMap(map);

Next when you want to get the location run:

var point=new google.maps.Point(x,y);
var location=$overlay.getProjection().fromContainerPixelToLatLng(point); 

Best
K

一城柳絮吹成雪 2024-09-23 03:27:23

这是不依赖 OverlayView() 的代码。此方法利用地图 API 中内置的 fromPointToLatLng() 方法。

function pixelToLatlng(xcoor, ycoor) {
  var ne = map.getBounds().getNorthEast();
  var sw = map.getBounds().getSouthWest();
  var projection = map.getProjection();
  var topRight = projection.fromLatLngToPoint(ne);
  var bottomLeft = projection.fromLatLngToPoint(sw);
  var scale = 1 << map.getZoom();

  var newLatlng = projection.fromPointToLatLng(new google.maps.Point(xcoor / scale + bottomLeft.x, ycoor / scale + topRight.y));
  return newLatlng;
};

来源:
http://magicalrosebud.com/how-to-use-googlemaps-api- frompointtolatlng/

这是一个小提琴: http://jsfiddle.net/mhaq865o/5/

Here's a code that doesn't rely on OverlayView(). This method makes use of the built in fromPointToLatLng() method in the maps API.

function pixelToLatlng(xcoor, ycoor) {
  var ne = map.getBounds().getNorthEast();
  var sw = map.getBounds().getSouthWest();
  var projection = map.getProjection();
  var topRight = projection.fromLatLngToPoint(ne);
  var bottomLeft = projection.fromLatLngToPoint(sw);
  var scale = 1 << map.getZoom();

  var newLatlng = projection.fromPointToLatLng(new google.maps.Point(xcoor / scale + bottomLeft.x, ycoor / scale + topRight.y));
  return newLatlng;
};

Source:
http://magicalrosebud.com/how-to-use-googlemaps-api-frompointtolatlng/

Here's a fiddle: http://jsfiddle.net/mhaq865o/5/

舞袖。长 2024-09-23 03:27:23

输入左侧和顶部像素偏移 (x,y),它会返回 google.maps.LatLng

function PixelToLatLng(x,y){
    var overlay = new google.maps.OverlayView()
    overlay.setMap(map);
    var LatLng = overlay.getProjection().fromContainerPixelToLatLng(new google.maps.Point(x,y));        
    overlay.setMap(null); delete overlay;
    return LatLng;
}

令人惊讶的是,它不在 google.maps.Map 对象中。

Enter left and top pixel offset (x,y) and it returns a google.maps.LatLng

function PixelToLatLng(x,y){
    var overlay = new google.maps.OverlayView()
    overlay.setMap(map);
    var LatLng = overlay.getProjection().fromContainerPixelToLatLng(new google.maps.Point(x,y));        
    overlay.setMap(null); delete overlay;
    return LatLng;
}

Surprised this isn't in the google.maps.Map object.

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