Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i am developing an online mapping application using OpenLayers + OpenStreetMaps.

i need help implementing a simple reverse geocoding function in javascript (or php) that receives Latitude and Longitude and returns an Address.

i would like to work with Nominatim, if possible. i do NOT want to use Google, Bing or CloudMade or other proprietary solutions.

this link returns a reasonable response and i used simple_html_dom.php to break down the result but it is sort of an ugly solution.

<?php

include('simple_html_dom.php');

$url = "http://nominatim.openstreetmap.org/reverse?format=xml&lat=-23.56320001&lon=-46.66140002&zoom=27&addressdetails=1";
$html = file_get_html($url);
foreach ($html->find('road') as $element ) {
    echo $element;
}

?>  

any suggestions of a more elegant solution?

share|improve this question

1 Answer

up vote 3 down vote accepted

You can request nominatim in JSON format, and pass a callback name, so that the response will be: callback(json).

Look at the doc : http://wiki.openstreetmap.org/wiki/Nominatim

And here’s a minimal example of use: http://jsfiddle.net/GWL7A/14/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.