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 Full Adress. List<Address> addresses = null; String addressText=""; try { addresses = geocoder.getFromLocation(latitude, longitude,1); } catch (IOException e) { e.printStackTrace(); } So, is there any way to use Gooogle Play Service ( ex: GoogleApiClient) to get full address from lat /lng Or get placeId from lat/lng. I mean, what is