我从GPS缓存中获取最后更新的值,如下所示
Location location;
location = appLocationService.getLocation(LocationManager.NETWORK_PROVIDER);
if(location!=null){
latitude=location.getLatitude();
longitude=location.getLongitude();
}
答案 0 :(得分:0)
位置类有一个名为getTime()
的方法,它为您提供接收GpsLocation的时间,因此将其与当前时间进行比较将为您提供比较,如果兑现位置已过时。