我正在尝试在我的 iOS React Native 应用程序中访问地理位置。我正在查看 documentation 中的示例但这完全没有帮助。在示例中,我不明白 Geolocation API 是如何使用的。
我的第一 react 是:
var React = require('react-native');
var {
Geolocation
} = React;
然后在我的代码中,执行如下操作:
Geolocation.getCurrentPosition((position) => {
console.log(position);
},
(error) => {
console.log(error);
});
但是,这似乎失败了。在示例中,它使用如下地理位置:
navigator.geolocation.getCurrentPosition(
(position) => {
var initialPosition = JSON.stringify(position);
this.setState({initialPosition});
},
(error) => alert(error.message),
{enableHighAccuracy: true, timeout: 20000, maximumAge: 1000}
);
但是,尚不清楚 navigator 来自何处以及为什么它具有附加的地理位置属性。我没有得到什么?
提前致谢。
更新:
原来的解决方案很简单:
var Geolocation = require('Geolocation');
我很困惑,因为 PushNotificationIOS(其文档与 Geolocation 位于同一区域)在 React Native 中通过以下方式使用:
var React = require('react-native');
var {
PushNotificationIOS
} = React;
Best Answer-推荐答案 strong>
你为什么不直接使用这个例子呢?我不知道 navigator 来自哪里,但我以这种方式使用它并且它工作正常。
您是否还在 Info.plist 中添加了 NSLocationWhenInUseUsageDescription 键?
关于javascript - React Native - 地理位置,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/35308009/
|