Reverse Geocoding for Israel [closed]

早过忘川 提交于 2019-12-03 14:15:20

问题


Where can i find a free service for reverse geocoding a coordinate in israel to get a street address? the google api web service doesnt give me a street address in israely coordinates... Thanks.


回答1:


I am also searching.. found no free service, but Waze have a nice one for pay.

This is example I got from them:

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>



回答2:


Checkout Find nearest Intersection and Find nearby Streets from GeoNames.org

For example:

http://ws.geonames.org/findNearestIntersectionOSM?lat=32.081&lng=34.781

returns:

<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>


来源:https://stackoverflow.com/questions/1949464/reverse-geocoding-for-israel

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!