I want to get following values from Latitude and Longitude in android
Use this it work for me :D
Retrieve json data of the latitude and longitude.
https://maps.googleapis.com/maps/api/geocode/json?key=AIzaSyAr29XeWWAeWZcrOgjjfs3iSnqkWtAz4No&latlng=2.1812,102.4266&sensor=true
Change latitude , longitude with your own place.
https://maps.googleapis.com/maps/api/geocode/json?key=<\API_KEY_HERE>&latlng="latitude","longitude"&sensor=true
You can change the <\API_KEY_HERE> with your own key.
Need to enable api service in google console for new api key.
Hope it helps :D