0
我想捕獲沒有GPS接收器芯片(或其GPS接收器芯片損壞的設備)的設備的位置座標。 Android是否提供任何API來實現這一點。 A-GPS是否也指向相同的位置api?如何在沒有GPS接收器芯片的情況下捕獲位置座標?
我想捕獲沒有GPS接收器芯片(或其GPS接收器芯片損壞的設備)的設備的位置座標。 Android是否提供任何API來實現這一點。 A-GPS是否也指向相同的位置api?如何在沒有GPS接收器芯片的情況下捕獲位置座標?
使用網絡供應商,而不是GPS某些選項
您可以使用網絡提供商,而不是,下面我張貼這爲我工作的代碼。
它檢查:第一,它提供可用,並選擇它。因此,根據您的優先級,你可以編輯代碼選擇網絡或GPS
public Location getLocation() {
try {
locationManager = (LocationManager) mContext
.getSystemService(LOCATION_SERVICE);
// getting GPS status
isGPSEnabled = locationManager
.isProviderEnabled(LocationManager.GPS_PROVIDER);
// getting network status
isNetworkEnabled = locationManager
.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
if (!isGPSEnabled && !isNetworkEnabled) {
// no network provider is enabled
} else {
this.canGetLocation = true;
if (isNetworkEnabled) {
locationManager.requestLocationUpdates(
LocationManager.NETWORK_PROVIDER,
MIN_TIME_BW_UPDATES,
MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
Log.d("Network", "Network Enabled");
if (locationManager != null) {
location = locationManager
.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
if (location != null) {
latitude = location.getLatitude();
longitude = location.getLongitude();
}
}
}
// if GPS Enabled get lat/long using GPS Services
if (isGPSEnabled) {
if (location == null) {
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER,
MIN_TIME_BW_UPDATES,
MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
Log.d("GPS", "GPS Enabled");
if (locationManager != null) {
location = locationManager
.getLastKnownLocation(LocationManager.GPS_PROVIDER);
if (location != null) {
latitude = location.getLatitude();
longitude = location.getLongitude();
}
}
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
return location;
}
調用你想要的方式明智。
您應該移除「GPS位置」中的「GPS」.-因此,您需要位置座標而無需GPS接收器。 – AlexWien
是的,謝謝你的建議 – John