使用位置服務在Android 中擷取緯度和經度座標
在Android 開發中,並確定使用者目前的位置對於各種應用程式來說通常是必要的。本指南提供如何使用 LocationManager 類別取得緯度和經度座標的詳細說明。
使用 LocationManager
要取得目前位置,請依照下列步驟操作:
初始化LocationManager:
LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
擷取最後已知位置:
Location location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
double longitude = location.getLongitude(); double latitude = location.getLatitude();
非同步位置更新
getLastKnownLocation()方法傳回最後一個已知位置的快照,但它沒有t 提供即時更新。若要定期更新,您可以使用 requestLocationUpdates() 方法: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);
權限
要存取裝置的 GPS 位置,應用程式需要 ACCESS_FINE_CATION清單:<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
提供者選擇
為了獲得更高的準確性,請使用getBestProvider() 方法選擇最佳的可用位置提供者:String provider = lm.getBestProvider(new Criteria(), true); Location location = lm.getLastKnownLocation(provider);
以上是如何在 Android 中使用位置服務來檢索緯度和經度?的詳細內容。更多資訊請關注PHP中文網其他相關文章!