获得myLocationOverlay的准确性

时间:2012-04-07 02:46:26

标签: android mylocationoverlay

有没有办法从MyLocationOverlay获得修复的准确性?它显然知道它是多么准确,因为它绘制了它的精确区域的圆。有没有得到这个价值?

由于

2 个答案:

答案 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方法实现位置侦听器,请检查以下链接:

http://hejp.co.uk/android/android-gps-example/