How To Get Full Address From Lat/lng Using Google Play Service ( Not Use Geocoder)
I have a position at 10.792986, 106.670004. How to get FULL address like as : 207 Lê Văn Sỹ, 14, Phú Nhuận Hồ Chí Minh, Vietnam If using Geocoder, I couldn't get Ful
Solution 1:
Have you try with googleapis.com, geocode get location from lat an lng
simply try to pass your lat and long to the following query string, and you will get a json array, fetch your city from there
http://maps.googleapis.com/maps/api/geocode/json?latlng=10.792986,106.670004&sensor=true
Post a Comment for "How To Get Full Address From Lat/lng Using Google Play Service ( Not Use Geocoder)"