Reputation: 2260
I am working on an Android application in which I need to achieve the following goals.
I need help on the second thing. Is there any way to get the Nearest bus stations from the Google Map inside an android application? Can I use Google Places API to achieve this?(the official page says that it's still experimental). If yes, how?
Thanks.
Upvotes: 1
Views: 8005
Reputation: 2260
I could successfully achieve these by referring Davy's Tech Blog Article and the code sample provided in Github
Thanks for your help.
Upvotes: 1
Reputation: 3671
Do a reverse geocoding on your coordinates:
https://developers.google.com/maps/documentation/geocoding/#ReverseGeocoding
then do a search like this:
https://maps.google.com/maps?q=transit stop near the_address_obtain_with_reverse_geocoding&output=json
Upvotes: 0