Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am programming an andoird app to convert the dynamically available latitude and logitude coordinates to a humanly readable location. Can someone please advise API's are available to make this conversion ?

like for example, 12.2, 4.5 is located in Central London, UK. Regarding the granularity I want to be able to atleast locate the city->town. Or if not, atleast the city,

Can someone please advise on what solutions are available for this problem.

Thanks, Ahmed

share|improve this question
You have two correct answers. Mark the answer as correct that helped you. – Kartik Sep 18 '12 at 9:29

2 Answers

up vote 4 down vote accepted

Try this:

//listenner location changed
private class MyLocListener implements LocationListener {
   public void onLocationChanged(Location location) {
      if (location != null) {
         Log.d("LOCATION CHANGED", location.getLatitude() + "");
         Log.d("LOCATION CHANGED", location.getLongitude() + "");
      }
   }
}

 //Get address base on location
try{
 Geocoder geo = new Geocoder(youractivityclassname.this.getApplicationContext(), Locale.getDefault());
 List<Address> addresses = geo.getFromLocation(latitude, longitude, 1);
  if (addresses.isEmpty()) {
        yourtextfieldname.setText("Waiting for Location");
  }
  else {
     if (addresses.size() > 0) {       
        Log.d(TAG,addresses.get(0).getFeatureName() + ", 
         " + addresses.get(0).getLocality() +", 
         " + addresses.get(0).getAdminArea() + ",
         " + addresses.get(0).getCountryName());

     }
  }
}
catch (Exception e) {
    e.printStackTrace(); 
}
share|improve this answer

The process of converting a point location (latitude, longitude) to a readable address or place name is called Reverse GeoCoding. [from Wikepedia]

You have to make use of GeoCoder class and use method getFromLocation. This method returns List<Address>, which you can access by iterating each Address object from the list.

Examples:

  1. http://www.edumobile.org/android/android-development/gecoding-example/
  2. Android: Reverse geocoding - getFromLocation
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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