可能重复:
Reverse Geocoding With Google Map API And PHP To Get Nearest Location Using Lat,Long coordinates
如何将gps坐标(纬度和经度)转换为Android或Php上的地址?
我的程序应该从给定的坐标获取地址。例如:
坐标:41.011576,28.984852 - >地址:Cankurtaran Mh。,Kennedy Cd,伊斯坦布尔,Türkiye
我希望,你可以帮助我..
答案 0 :(得分:6)
Geocoder
课程可以为Android提供您想要的功能。你会使用getFromLocation
你会这样做:
Geocoder geocoder = new Geocoder(context, Locale.getDefault());
Address adress;
String result = null;
List<Address> list = geocoder.getFromLocation(latitude, longitude, 1);
address = list.get(0);
result = address.getAddressLine(0) + ", " + address.getLocality();
//Now do what you want with result - this is the address.
您可能希望进行修改,例如getFromLocation
中的1,如果您想要多个位置,或者address.getAddressLine
您可能希望获得多行。
您需要将其放在try {}
块中并在工作线程中执行。
答案 1 :(得分:3)
Google反向地理编码是您的朋友:http://code.google.com/apis/maps/documentation/geocoding/