1

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.

Alon Amir
  • 4,913
  • 9
  • 47
  • 86

2 Answers2

4

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>
user368683
  • 360
  • 3
  • 7
2

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>
Pavel Radzivilovsky
  • 18,794
  • 5
  • 57
  • 67