如何获取地址的“纬度”和“经度”?谷歌地图
我正在使用 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'
Note:
my visitor (user) who added the address (into Mysql table)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Google 地图中输入所需的地址。
现在,在地址栏中输入:
这将为您返回经度和纬度。只需将这些数字复制并粘贴到您的代码中即可。
编辑
由于这个问题仍然受到一些关注,我想说现在大多数浏览器都会搜索您输入地址栏中的文本,因此最好打开浏览器的控制台只需输入上述代码的一部分:
prompt('',gApplication.getMap().getCenter())
另外,如果您只想返回 javascript 对象,只需调用:
gApplication.getMap().getCenter()
这样,您也可以以编程方式执行操作。
Enter the desired address into Google Maps.
Now, enter this into the address bar:
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.
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.