2

问起来可能有点菜鸟。对于那个很抱歉。尝试了这个https://github.com/mutaku/pygeocoding库并像这样进行了查找

print LookUp(latlng="39.9518819802915,-75.1476150197085")

但它给了我

' init () 应该返回 None'

我做错什么了?

提前致谢。

4

1 回答 1

3

我认为该代码中存在错误,请替换以下行:

return result

self.result=result  #assign the result to a LookUp instance 

然后运行:

In [1]: from pygeocoding import *

In [2]: r=LookUp(latlng="39.9518819802915,-75.1476150197085")

In [3]: r.result
Out[3]: 

{u'results': [{u'address_components': [{u'long_name': u'400',
     u'short_name': u'400',
     u'types': [u'street_number']},
    {u'long_name': u'Arch Street',
     u'short_name': u'Arch St',
     u'types': [u'route']},
    {u'long_name': u'Center City',
     u'short_name': u'Center City',
     u'types': [u'neighborhood', u'politi ....................}
于 2013-01-25T09:14:24.527 回答