Hi Im trying to get the sublocality from Map API, when I use the following URL
http://maps.googleapis.com/maps/api/geocode/json?latlng=13.0445756,80.24470623333333&sensor=false Im getting { "long_name" : "T Nagar", "short_name" : "T Nagar", "types" : [ "sublocality", "political" ] }, But In Android MAP API code Im getting "Lakshimi Colony" as SubLocality or some time NULL Here is the code Im using to get double latitude = location.getLatitude() ; double longitude = location.getLongitude() ; List<Address> addresses = gc.getFromLocation(latitude, longitude, 1); Address address = addresses.get(0); address.getSubLocality() ; Anything I need to do to get it consistently? Or Can I use the above said URL directly to get data? Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

