I want to get details of the area I am standing in, I have the latitude and longitude using the LocationManager class, but how do I get the details such as name of the area, address etc? I don't want to use Geocoder due to restricted number of requests. How do find the details of the area using Google Places API?
Asked
Active
Viewed 1.1k times
3
-
This link might be helpful : http://stackoverflow.com/questions/2296377/how-to-get-city-name-from-latitude-and-longitude-coordinates-in-google-maps – yasin Nov 05 '16 at 21:43
1 Answers
0
Store the result of getFromLocation(double, double, int) method in an Address object, then call the method getLocality().

yasin
- 270
- 4
- 6