如何使用地理编码获取经纬度?

发布于 2024-08-15 06:56:45 字数 649 浏览 2 评论 0原文

我有一个地址,现在我需要检索纬度/朗度坐标。
在 Google,他们只有很好的示例对于 V2 而不是 V3。

我想要执行以下操作:

var myLatLAng = getLatLang(adress);

如何修改此代码以实现这一点?

function showAddress(address) {
  geocoder.getLatLng(
    address,
    function(point) {
      if (!point) {
        alert(address + " not found");
      } else {
        map.setCenter(point, 13);
        var marker = new GMarker(point);
        map.addOverlay(marker);
        marker.openInfoWindowHtml(address);
      }
    }
  );
}

I have an address, and now I need to retrieve the Lat / Lang coordinates.
At Google, they only have good examples for V2 and not V3.

I want to do the following:

var myLatLAng = getLatLang(adress);

How can I modify this code to make that happend?

function showAddress(address) {
  geocoder.getLatLng(
    address,
    function(point) {
      if (!point) {
        alert(address + " not found");
      } else {
        map.setCenter(point, 13);
        var marker = new GMarker(point);
        map.addOverlay(marker);
        marker.openInfoWindowHtml(address);
      }
    }
  );
}

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

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

发布评论

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

评论(1

赠意 2024-08-22 06:56:45

您无法返回任何值,因为 getLatLng 使用回调函数,因此它只能与您的环境交互。
您可以将其分配给其他变量

var lat, lng;
function showAddress(address) {
    ...
    } else {
         lat = point.lat();
         lng = point.lng();

         orExecuteOtherfunction();
    }
}

或执行其他函数来对返回的点执行某些操作。

You cannot return any value because getLatLng is using callback function so it can only interact with your enviroment.
You can assign it to some other variable

var lat, lng;
function showAddress(address) {
    ...
    } else {
         lat = point.lat();
         lng = point.lng();

         orExecuteOtherfunction();
    }
}

Or execute some other function that will do something with your returned point.

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