Detect the nearest transit stop from the given location
Well, you could use the places-API to find the nearest transit-stops, it works fine for me for the given location. Just do a request with the parameters: location (latlng-object of the given location) radius(radius to search for in meters) types(array of valid types, e.g. [‘bus_station’,’subway_station’]) Checkout the fiddle: http://jsfiddle.net/doktormolle/aZrvs/ For retrieving further details(bus service No, … Read more