导航器地理位置getCurrentPosition不起作用

时间:2013-09-24 11:12:13

标签: javascript android html5 geolocation geo

我有这个HTML页面:

<!DOCTYPE html>
<html>
<head>
    <title>Geolocation test</title>
</head>
<body>
    <script type="text/javascript">
        navigator.geolocation.getCurrentPosition(function (position) {
            alert(position.coords.latitude + ',' + position.coords.longitude);
        }, function (error) {
            alert(error.code);
        }, {enableHighAccuracy: true, maximumAge: 0});
    </script>
</body>

适用于:

  • 三星Galaxy 3 Google Chrome
  • 三星Galaxy 3原生网络浏览器
  • Chrome桌面。

无效:

  • 三星Galaxy S2 Chrome
  • 三星Galaxy S2原生
  • 桌面版Firefox

我一直在阅读很多关于这个问题的问题,但他们都说有时位置不可用或者可能需要很长时间来检索它,但是当我打开android地图应用程序时,它显示了一个完美的立即定位(即使我暂时不使用它)

我知道我可以使用timeout选项来处理错误回调,但那不是我的解决方案。

谢谢!

1 个答案:

答案 0 :(得分:0)

可能是由于应用程序权限问题

https://support.google.com/chrome/answer/142065?hl=en