有没有办法从MyLocationOverlay获得修复的准确性?它显然知道它是多么准确,因为它绘制了它的精确区域的圆。有没有得到这个价值?
由于
答案 0 :(得分:0)
我的某个应用中的位置监听器代码......
public void onLocationChanged(Location location) {
currentLatitudeE6 = (int) (location.getLatitude() * 1E6);
currentLongitudeE6 = (int) (location.getLongitude() * 1E6);
currentAccuracy = location.getAccuracy();
hasCurrentPosition = true;
gpsMessage = "GPS Tracking";
updateMap();
}
答案 1 :(得分:0)
通过locationManager.requestLocationUpdates方法实现位置侦听器,请检查以下链接: