xml 获取当前位置(纬度和经度) - http://stackoverflow.com/questions/2227292/how-to-get-latitude-and-longitude-of

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 获取当前位置(纬度和经度) - http://stackoverflow.com/questions/2227292/how-to-get-latitude-and-longitude-of相关的知识,希望对你有一定的参考价值。

private final LocationListener locationListener = new LocationListener() {
    public void onLocationChanged(Location location) {
        longitude = location.getLongitude();
        latitude = location.getLatitude();
    }
}

lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 2000, 10, locationListener);
LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE); 
Location location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
double longitude = location.getLongitude();
double latitude = location.getLatitude();
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

以上是关于xml 获取当前位置(纬度和经度) - http://stackoverflow.com/questions/2227292/how-to-get-latitude-and-longitude-of的主要内容,如果未能解决你的问题,请参考以下文章

php怎样获取当前位置的经纬度?

使用gps从纬度和经度获取当前位置

如果应用程序在后台运行,如何获取当前位置的纬度和经度?

在不改变我的位置的情况下获取当前位置的经度和纬度

如何确定我当前的位置(经度、纬度和高度)?

Android:如何获取经度和纬度的当前位置?