1
我想記錄有關應用程序如何獲取座標的信息。這是我用來抓取座標的代碼。我如何知道提供者pf LocationManager的GPS檢索?
locationManager = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
location = locationManager.getLastKnownLocation(locationManager.NETWORK_PROVIDER);
我的問題是,我如何找出座標的來源? (GPS,網絡三角網,Wifi等)
換句話說,getLastKnownLocation返回來自多個來源的座標,我如何獲得源的字符串名稱?
看看這個[問題](http://stackoverflow.com/questions/6775257/android-location-providers-gps-or-network-provider)和[this](http://stackoverflow.com/questions/3145089 /什麼,是最簡單和最穩健的路到得到-的用戶,當前定位功能於一/ 3145655#3145655)。也許它有幫助。 – looselessOne