React native for Android导航器地理位置未运行

时间:2015-12-23 15:02:38

标签: android geolocation react-native

在我的iOS应用程序中,地理定位工作正常,并在观察器功能上获取我的位置。

然而,对于Android,当我输入警报或控制台日志时,代码似乎永远不会在成功或失败的回调中执行。

watchID: (null: ?number),

this.watchID = navigator.geolocation.watchPosition(
    (position) => {
        this.setState({ 
            userLocation: position,
            geo: true
        }, this.fetchBusinesses());
    },
    (error) => console.log(error.message),
    {enableHighAccuracy: true, timeout: 2000, maximumAge: 1000}
    );

1 个答案:

答案 0 :(得分:3)

如果您使用的是最新的Android版,则需要手动设置"位置"继续。 此开关位于设置 - >应用 - > {您的应用} - >权限。enter image description here