我正在使用 GPS_PROVIDER 获取位置信息,但它在某些地方无法完美运行。使用 Gps_Provider 有什么问题吗?据我所知 Network_Provider 没有提供完美的位置信息。请帮忙
user1287975
问问题
165 次
1 回答
0
我认为您在建筑物或一些有遮盖的地方遇到了这个问题。如果是,那么请不要担心,因为 gps 范围并不能完美地分配一些覆盖的地方。
据我所知 Network_Provider 没有提供完美的位置信息
Network_Provider 提供 100 到 200 米范围内的位置数据。但它比 gps_provider 快。
对于您的问题,您可以分别使用这两个提供程序。有几种方法可以同时使用这两种方法..
您可以使用以下标准:
Criteria myCriteria = new Criteria();
myCriteria.setAccuracy(Criteria.ACCURACY_MEDIUM);
myCriteria.setPowerRequirement(Criteria.POWER_LOW);
并像这样使用:
String myProvider = mLocationManager.getBestProvider(myCriteria,true);
mLocationManager.requestLocationUpdates(myProvider, 500, 5, mVeggsterLocationListener);
还有其他一些方法,但我认为这会对你有所帮助..
编辑
另一种方式:
public Location getLocation() {
try {
locationManager = (LocationManager) mContext
.getSystemService(Context.LOCATION_SERVICE);
// getting GPS status
isGPSEnabled = locationManager
.isProviderEnabled(LocationManager.GPS_PROVIDER);
Log.v("isGPSEnabled", "=" + isGPSEnabled);
// getting network status
isNetworkEnabled = locationManager
.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
Log.v("isNetworkEnabled", "=" + isNetworkEnabled);
if (isGPSEnabled == false && isNetworkEnabled == false) {
// 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");
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 Enabled", "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;
}
一切顺利。
于 2013-09-14T10:21:34.710 回答