我正在使用GPS_PROVIDER来获取位置信息,但在某些地方它并不能完美运行。使用Gps_Provider时是否有任何问题。据我所知,Network_Provider没有提供完美的位置信息。请帮忙
答案 0 :(得分: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;
}
一切顺利。