用另一种语言编写的地理编码 Web 服务地址参数

发布于 2024-08-27 06:01:33 字数 446 浏览 5 评论 0原文

我尝试使用以下谷歌地图网络服务来查找希腊地址: http://maps.google.com/maps/api/geocode/json?address=Aκαδημίας 16&sensor=false 和它不起作用。 如果我点击完全相同的地址,但用拉丁字母字符书写:maps.google.com/maps/api/geocode/json?address=akadimias 16&sensor=false,它会工作并返回正确的结果。有人可以帮忙解决这个问题吗? (以希腊字母作为语言参数使用此服务)

预先感谢您,

尼古拉斯

I try to use the following google map webservice in order to locate greek addresses:
http://maps.google.com/maps/api/geocode/json?address=Ακαδημίας 16&sensor=false and it does not work.
If I hit the same exactly address but written with latin alphabet characters: maps.google.com/maps/api/geocode/json?address=akadimias 16&sensor=false, it works and returns the right result. Could somebody help with this? (To use this service with greek letters as language parameter)

Thank you in advance,

Nicholas

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

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

发布评论

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

评论(1

揽月 2024-09-03 06:01:34

您应该对字符进行编码。在Python中你可以这样做:

import urllib
address = 'Ακαδημίας'
encoded_address = urllib.quote(address)
query = 'http://maps.google.com/maps/api/geocode/json?address='+encoded_address+'&sensor=false'

由于我不熟悉希腊语,我不知道它是否应该读为“Aκαδnμίας”或“Aκαδημίας 16”,但上面的示例给出了编码地址并且似乎

'%CE%91%CE%BA%CE%B1%CE%B4%CE%B7%CE%BC%CE%AF%CE%B1%CF%82'

可以工作。我猜你在 PHP 或任何你想使用的东西中都有类似的方法。对于 PHP,请查看 IE 中的希腊 url 字符问题

You should encode the characters. In python you could do:

import urllib
address = 'Ακαδημίας'
encoded_address = urllib.quote(address)
query = 'http://maps.google.com/maps/api/geocode/json?address='+encoded_address+'&sensor=false'

As I am not familiar with greek I don't know if it should read 'Ακαδημίας' or 'Ακαδημίας 16', but the example above gives the encoded address to be

'%CE%91%CE%BA%CE%B1%CE%B4%CE%B7%CE%BC%CE%AF%CE%B1%CF%82'

and seems to work. I guess you have similar methods in PHP or whatever you want to use. For PHP have a look at Problem with greek url characters in IE

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