我们如何在用 React Native 编写的移动应用程序中获取 GPS 位置
How we can get GPS location within a mobile app written in React Native
我用 React Native 编写了一个移动应用程序。我需要在某些时间步骤中获得用户 GPS 位置。有谁知道在用 React Native 编写的移动应用程序中获取 GPS 位置的最佳库和方法是什么? (对于 IOS 和 android)
谢谢
先安装它:
npm install @react-native-community/geolocation --save
react-native link @react-native-community/geolocation
然后,要请求访问位置,您需要将以下行添加到应用的 AndroidManifest.xml
然后在您的应用中使用它:
import Geolocation from '@react-native-community/geolocation';
Geolocation.getCurrentPosition(info => console.log(info));
我用 React Native 编写了一个移动应用程序。我需要在某些时间步骤中获得用户 GPS 位置。有谁知道在用 React Native 编写的移动应用程序中获取 GPS 位置的最佳库和方法是什么? (对于 IOS 和 android)
谢谢
先安装它:
npm install @react-native-community/geolocation --save
react-native link @react-native-community/geolocation
然后,要请求访问位置,您需要将以下行添加到应用的 AndroidManifest.xml
然后在您的应用中使用它:
import Geolocation from '@react-native-community/geolocation';
Geolocation.getCurrentPosition(info => console.log(info));