开发者

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

    }   
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜