I am able to successfully get lat/long and pass it to the geocoder to get an Address. However, I don't always get an address back. Seems like it takes a couple of attempts? I'm not sure why.

Is there a better way for me to obtain the address at this point?

public List<Address> getAddresses(){
          Geocoder geocoder = new Geocoder(getApplicationContext(), Locale.getDefault());
          List<Address> addresses = new ArrayList();
             try {
       addresses = geocoder.getFromLocation(latitude, longitude, 1);
      } catch (IOException e) {
       e.printStackTrace();
      }

      return addresses;
        }

I am calling this method here:

LocationListener onLocationChange=new LocationListener() {
        public void onLocationChanged(Location loc) {
            //sets and displays the lat/long when a location is provided
            String latlong = "Lat: " + loc.getLatitude() + " Long: " + loc.getLongitude();   
            latitude = loc.getLatitude();
            longitude = loc.getLongitude();

            List<Address> addresses = getAddresses();

            if(addresses.size() > 0 && addresses != null)
             zipcode = addresses.get(0).getPostalCode();

            Toast.makeText(getApplicationContext(), zipcode,Toast.LENGTH_SHORT).show();
        }
link|improve this question

There are lots of lats and longs that don't have people living near? – John Nov 12 '10 at 21:33
What is funny is that it can detect my exact zipcode, it just takes a few tries? I haven't moved locations during testing. – Sheehan Alam Nov 12 '10 at 21:33
You should test this code with a list of proven lat/lon points, for which you know address (or the lack of it). – Peter Knego Nov 12 '10 at 21:35
feedback

1 Answer

up vote 2 down vote accepted

In my experience Googles Geocoder doesnt always work, I have a couple of fixed points on the map, when I click on the overlay it pops a toast with the adress for that lat/long, these points do not change, sometimes I click on a same point 10 times, but I only get an adress 7 of them.

It's wierd, but thats the way it is, I just modified my app to work around the problem.

link|improve this answer
how have you gotten around it? – Sheehan Alam Nov 12 '10 at 22:45
1  
Not exactly smart or effective, but I do a while loop, I ask for the adress until I get it or up to 3 times. The strain on the network isnt that bad, and 99% of the time by the 3rd time I got the answer I was looking for. I by the 3rd I didnt get it, I assume the is simply no info for that point. I know, this could be solved better. – blindstuff Nov 13 '10 at 15:26
interesting, ill have to try that out. – Sheehan Alam Nov 13 '10 at 23:42
1  
So you know.. the geocoder service your hitting will only allow one hit per IP addr every 15 seconds. – apesa Mar 21 '11 at 16:37
1  
I don't think apesa's comment is true because my application makes 12 sequential calls to the service and 95% of the time I get the data that I need. The other 5% only a fraction of the data is return. It's intermittent too, because when I first wrote the application about 3 months ago I didn't have any problems with the service at all. – bradley4 Sep 22 '11 at 5:42
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.