如何找到定位精度?
How to find location accuracy?
如何找到 android 设备 运行 android 8 及以下设备的位置精度。
GoogleApiClient googleApiClient = new GoogleApiClient.Builder(context)
.addApi(LocationServices.API).build();
googleApiClient.connect();
LocationRequest locationRequest = LocationRequest.create();
locationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
locationRequest.setInterval(10000);
locationRequest.setFastestInterval(10000 / 2);
我知道有一个 locationRequest.getPriority()
方法,但不知道如何使用它。在执行上面的代码片段之前,我需要首先确定该位置是否处于仅设备模式。
能否请您演示一种查找位置精度的方法?
我想知道该位置是在“高精度”模式、“节电模式”还是“仅设备”模式下
如果您正在使用 locationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
并且在 AndroidManifest
上设置了适当的权限并且用户已经选择为应用程序提供这些权限并且设备具有 GPS 和网络连接,然后感谢上帝的恩典,你有最好的定位精度。关于你的位置数据有多准确,你可以参考下面的table。
进一步阅读:HERE
位置在测量点的半径范围内(以米为单位)。如果 Location.getAccuracy returns 10,则设备的真实位置在报告坐标的 10 米范围内的可能性为 68%。
使用此代码获得以米为单位的精度。
location.getAccuracy()
//此代码以米为单位获取精度。
这里是android的官方文档。
[https://developer.android.com/reference/android/location/Location.html#getAccuracy()]
如果此位置没有水平精度,则返回 0.0。
如何找到 android 设备 运行 android 8 及以下设备的位置精度。
GoogleApiClient googleApiClient = new GoogleApiClient.Builder(context)
.addApi(LocationServices.API).build();
googleApiClient.connect();
LocationRequest locationRequest = LocationRequest.create();
locationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
locationRequest.setInterval(10000);
locationRequest.setFastestInterval(10000 / 2);
我知道有一个 locationRequest.getPriority()
方法,但不知道如何使用它。在执行上面的代码片段之前,我需要首先确定该位置是否处于仅设备模式。
能否请您演示一种查找位置精度的方法?
我想知道该位置是在“高精度”模式、“节电模式”还是“仅设备”模式下
如果您正在使用 locationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
并且在 AndroidManifest
上设置了适当的权限并且用户已经选择为应用程序提供这些权限并且设备具有 GPS 和网络连接,然后感谢上帝的恩典,你有最好的定位精度。关于你的位置数据有多准确,你可以参考下面的table。
进一步阅读:HERE
位置在测量点的半径范围内(以米为单位)。如果 Location.getAccuracy returns 10,则设备的真实位置在报告坐标的 10 米范围内的可能性为 68%。
使用此代码获得以米为单位的精度。
location.getAccuracy()
//此代码以米为单位获取精度。
这里是android的官方文档。 [https://developer.android.com/reference/android/location/Location.html#getAccuracy()]
如果此位置没有水平精度,则返回 0.0。