Google maps Pincode latitude-longitude
How do I get postal code value for 开发者_开发百科a location if I have Latitude and Longitude values of that location
I think you can use getPostalCode() for this.
Geocoder geo = new Geocoder(getApplicationContext(),
Locale.getDefault());
List<Address> add;
try {
add = geo.getFromLocation(taplat, taplon, 1);
addstr = add.get(0).getPostalCode(); //u'll get postal code in addstr
}
精彩评论