如何获得世博会位置的当前准确度值?
How can I get the current accuracy value in expo-location?
我是第一次开发react-native,不能说完全理解位置API。位置 API 的准确度值从 1 到 6,我想立即获取 GPS 准确度值并在该值小于 4 时显示警告。我该如何实现?
expo-location 版本:13.0.4
平台:IOS、android
当您调用 Location.getCurrentPositionAsync(options)
时,响应对象包含“准确度”键,您可以使用它来获取准确度值。
此外,如果您需要添加 GPS 精度检查,最好使用 Location.enableNetworkProviderAsync()
,
它要求用户打开高精度定位模式。
我是第一次开发react-native,不能说完全理解位置API。位置 API 的准确度值从 1 到 6,我想立即获取 GPS 准确度值并在该值小于 4 时显示警告。我该如何实现?
expo-location 版本:13.0.4 平台:IOS、android
当您调用 Location.getCurrentPositionAsync(options)
时,响应对象包含“准确度”键,您可以使用它来获取准确度值。
此外,如果您需要添加 GPS 精度检查,最好使用 Location.enableNetworkProviderAsync()
,
它要求用户打开高精度定位模式。