关于
??应公司项目需求,实现gps离线定位+百度地图展示,上一篇主要实现了地图的gps离线定位展示Android实现百度离线地图+gps定位,这一篇就是为了实现逆地址信息解析,利用android自带原生Geocoder进行获取解析。
效果
??可以看到解析获取到的是一个Address对象数据,然后我们只需要拼接起来即可组成当前定位位置。
编写获取address对象数据方法
public static Address getAddress(double latitude, double longitude) {
Geocoder geocoder = new Geocoder(AppApplication.getInstance(), Locale.getDefault());
try {
List<Address> addresses = geocoder.getFromLocation(latitude, longitude, 1);
Log.e("测试",addresses.toString());
if (addresses.size() > 0) return addresses.get(0);
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
拼接字段信息展示
??开辟线程获取解析的地址信息,是因为android8.0手机调用getFromLocation() 方法获取不到,只能在线程里面去获取。
public static String getStreet(double latitude, double longitude) {
final Address[] address = new Address[1];
new Thread(){
@Override
public void run() {
address[0] = getAddress(latitude, longitude);
Log.e("定位数据",address[0].toString());
if (address[0] !=null&& address[0].getAddressLine(2)!=null){
SPUtils.put("sj", address[0].getAddressLine(0)+ address[0].getAddressLine(1)+ address[0].getAddressLine(2));
}
}
}.start();
if (address[0] !=null&& address[0].getAddressLine(2)!=null){
return address[0].getAddressLine(0)+ address[0].getAddressLine(1)+ address[0].getAddressLine(2);
}
return address[0] == null ? "unknown" : address[0].getAddressLine(0)+ address[0].getAddressLine(1);
}
信息展示
LocationUtils.getStreet(location.getLatitude(),location.getLongitude());
etAddress.setText(SPUtils.get("sj","unkown").toString());
??经测试,android8.0的手机也可以正常显示解析完的地址。
|