我在哪里可以找到免费的服务,用于在以色列获得街道地址的反向地理编码坐标?谷歌API的web服务不给我在israely坐标中的街道地址... 谢谢。以色列的反向地理编码
1
A
回答
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>
4
结帐 Find nearest Intersection and Find nearby Streets从GeoNames.org
例如:
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>
+0
更新此街道更新,但这并没有给出房屋号 – 2010-06-17 20:06:59
+0
这是我发现的最接近的免费。唯一的功能齐全的是现在的ro地图集,但地图集是昂贵的。 – 2010-06-27 10:50:50
相关问题
- 1. 反向地理编码,并以每次
- 2. J2ME +反向地理编码
- 3. 反向地理编码
- 4. 反向地理编码v3
- 5. 反向地理编码
- 6. IOS6反向地理编码
- 7. 谷歌地图 - 反向地理编码
- 8. 反向地理编码 - 返回本地
- 9. 反向地理编码和本地化
- 10. 反向地理编码显示地址
- 11. 反向地理编码代码
- 12. 地理编码和反向地理编码
- 13. xcode中的反向地理编码
- 14. HTML中的反向地理编码
- 15. GoogleMap的v3可反向地理编码
- 16. 使用GPS的反向地理编码
- 17. OSX上的反向地理编码/ MapKit?
- 18. Google Map API的反向地理编码
- 19. 反向地理编码与botframework.location
- 20. 反向地理编码不使用MKReverseGeocoder
- 21. 批量反向地理编码
- 22. Google反向地理编码问题
- 23. 反向地理编码使用MKReverseGeocoder
- 24. 反向地理编码实现
- 25. iOS5反向地理编码限制
- 26. XML to excel - 反向地理编码
- 27. 反向地理编码getPostalCode启动
- 28. 反向地理编码与AngularJS
- 29. Android:反向地理编码 - getFromLocation
- 30. 反向地理编码服务
你是什么意思以色列坐标,某个系统是什么意思? – 2009-12-22 22:08:46
我的意思是坐落在一个街道内的isreal坐标。 – 2009-12-22 22:20:51
将很高兴为谷歌地图API – EladG 2011-10-26 10:15:10