Skip to content Skip to sidebar Skip to footer

Getting Nearest Bus Stations From Google Map Inside Android Application

I am working on an Android application in which I need to achieve the following goals. Get the current position(co-ordinates) of the device - Done Search within a given radius cen

Solution 1:

I could successfully achieve these by referring Davy's Tech Blog Article and the code sample provided in Github

Thanks for your help.

Solution 2:

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

Post a Comment for "Getting Nearest Bus Stations From Google Map Inside Android Application"