Consider the following code snippet: Geocoder geocoder = new Geocoder( context, locale ); List<Address> address = getcoder.getFromLocation( lat, long, 1 );
My input values for latitude and longitude are: Lat: 39.9982136 Long: -75.2508229 But the latitude and longitude in my Address object are: Lat: 39.9983658 Long: -75.2509783 The reason I care is that an Address object for the original set of values has a correct value for locality while the Address object for the second set of values has null. Any idea what I need to do to make sure that my output matches my input? TIA! -- Jake Colman -- Android Tinkerer -- 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

