I'm writing an Android app and I need the ability to take a lat/long value and find the lat/long value of the nearest road to it. I've read the article at http://econym.org.uk/gmap/snap.htm, and tried to implement this, but I've had to use the Google Maps Webservices rather than javascript (since it's an android app). When I make a request like
maps.google.com/maps/api/directions/xml?origin=52.0,0&destination=52.0,0&sensor=true
it doesn't return me the closest road at all! Seems that the above method doesn't work with the webservices. Has anyone got any other ideas about how to solve this problem?
Your URL seems to work perfectly.
Here is the AsyncTask I used to test it.
Within the logcat output if you look down a few lines you should see:
They are the coordinates you are looking for. I hope this helps.