如何在React Native中获得地理位置

葛磊
2023-12-01

geolocation API扩展了geolocation的web规范。在android中,地理位置使用android.location. api。

以下替代库用于在React Native中包含新的位置服务API。

React-native-geolocation-service
React-native-location

要请求位置访问,需要在应用程序的AndroidManifest.xml文件中包含以下代码。

<uses-permission android:name=”android.permission.ACCESS_FINE_LOCATION”/>
 类似资料: