如何获取地址的“纬度”和“经度”?谷歌地图

发布于 2024-10-17 05:45:45 字数 348 浏览 3 评论 0原文

我正在使用 http://gmap.nurtext.de/documentation.html 库来显示我的地址字段的地图(mysql 表)

如何获取每个地址的纬度和经度,例如:

我有这个地址:'McLester road'

示例

注意:
我的访客(用户)添加了地址(到 Mysql 表中)

I'm using http://gmap.nurtext.de/documentation.html library to display the map for my address field (mysql table)

How I can get the latitude and longitude for each address, for example:

I have this address: 'McLester road'

example

Note:
my visitor (user) who added the address (into Mysql table)

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

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

发布评论

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

评论(2

终遇你 2024-10-24 05:45:45

在 Google 地图中输入所需的地址。

现在,在地址栏中输入:

javascript:void(prompt('',gApplication.getMap().getCenter()))

这将为您返回经度和纬度。只需将这些数字复制并粘贴到您的代码中即可。

编辑

由于这个问题仍然受到一些关注,我想说现在大多数浏览器都会搜索您输入地址栏中的文本,因此最好打开浏览器的控制台只需输入上述代码的一部分:

prompt('',gApplication.getMap().getCenter())

另外,如果您只想返回 javascript 对象,只需调用:
gApplication.getMap().getCenter()

这样,您也可以以编程方式执行操作。

Enter the desired address into Google Maps.

Now, enter this into the address bar:

javascript:void(prompt('',gApplication.getMap().getCenter()))

This will return the longitude and latitude for you. Simply copy and paste these numbers into your code.

EDIT

Since this question is still getting some attention I'd like to say that nowadays most browsers will search for the text you put into the address bar, so instead it may be better to open up your browser's console and just enter a portion of the above code:

prompt('',gApplication.getMap().getCenter())

Also, if you just want the just the javascript object returned, just call:
gApplication.getMap().getCenter()

That way, you can do things programatically as well.

小…楫夜泊 2024-10-24 05:45:45

Google 的地理编码服务可以将地址转换为坐标。

有一个 JavaScript API,但地理编码也可以作为 Web 服务使用。

Google's geocoding sevice can convert address to coordinates.

There is a javascript api, but geocoding is available as a webservice too.

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