Search code examples
androidgoogle-mapsgeolocationlatitude-longitude

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


Solution

  • 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
    
        }