我在哪里可以找到一个免费服务,用于对以色列的坐标进行反向地理编码以获取街道地址?谷歌api网络服务并没有给我一个israely坐标的街道地址... 感谢。
答案 0 :(得分:4)
结帐 来自GeoNames.org的Find nearest Intersection and Find nearby Streets
例如:
http://ws.geonames.org/findNearestIntersectionOSM?lat=32.081&lng=34.781
返回:
<geonames>
<intersection>
<street1>אבן גבירול</street1>
<highway1>tertiary</highway1>
<street2>בלוך</street2>
<highway2>tertiary</highway2>
<lat>32.0813665</lat>
<lng>34.7813189</lng>
<distance>0.05</distance>
</intersection>
</geonames>
答案 1 :(得分:2)
我也在搜索..找不到免费服务,但是Waze有一个很好的付费。
这是我从他们那里得到的例子:
http://rgc.waze.co.il/GeoCoding/decode?token=123&x=34.8735080868463&y=32.05829587571&r=0.001&max=3
Where:
token = is the token assigned to you (currently use 123)
x = Lon.
y = Lat.
r = distance to search the address (angle - 1 deg = 111.11 KM)
max = the number of max results
<result>
<address id="52778" type="1" street="גני תקווה" house="22">
</address>
<address id="52776" type="1" street="קישון" house="22">
</address>
<address id="52775" type="1" street="קישון" house="18">
</address>
</result>