I want to create LatLngBounds for 50Mile radius wrt. current location. to use with google places api.
Right now, I do following an example online
//Southwest corner to Northeast corner.
LatLngBounds bounds = new LatLngBounds(
new LatLng(39.906374, -105.122337),
new LatLng(39.949552, -105.068779)
);
Can you provide pointers?
Update:
I used this as answer:
How to convert a LatLng and a radius to a LatLngBounds in Android Google Maps API v2?