I’m looking for an API or a combination of API’s where I can send “Anjuna, India” and get back a list of places nearby. The data is mostly for “third world” countries, less so for Europe/US. Any suggestions/ideas about how to structure this?
Share
You could make use of a couple of Yahoo’s Geo APIs in the following manner.
A quick example, combining those APIs together with Yahoo’s YQL would provide neighbor locations for “Anjuna, India” using the query:
SELECT * FROM geo.places.neighbors WHERE neighbor_woeid IN ( SELECT woeid FROM geo.places WHERE text="Anjuna, India" LIMIT 1 )Try this in YQL Console (must be logged in)