navigator.geolocation在浏览器上工作但在设备上没有

时间:2015-12-16 11:31:31

标签: angularjs cordova

我正在研究混合动力`

$scope.onItemClick=function(value)
        {
        //alert('value: '+value);
        if(value=='app.vrsForm')
        { 
           alert('hello inside form');
           navigator.geolocation.getCurrentPosition($scope.onSuccess,$scope.onError,{maximumAge:600000, timeout:5000, enableHighAccuracy: false});
}

` 应用程序,我必须检测用户的位置,并从我最接近它的位置列表中添加一个地址。我发现我的代码在Mozilla Firefox上运行良好,但它似乎无法在我的设备上运行。

成功功能会显示警告,因为我已在其中为浏览器发出警报,但在设备中它似乎无法到达onSuccess功能。

0 个答案:

没有答案