我有这个 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 谷歌浏览器
- 三星 Galaxy 3 原生网页浏览器
- 铬桌面。
不适用于:
- 三星 Galaxy S2 镀铬
- 三星 Galaxy S2 原生
- 桌面版 Firefox
我一直在阅读很多关于这个问题的问题,但是他们都说有时位置不可用或者可能需要很长时间才能检索到它,但是当我打开 android 地图应用程序时,它会立即显示一个完美的位置(即使我有一段时间不使用它)
我知道我可以使用超时选项来处理错误回调,但这不是我的解决方案。
谢谢!