获取地理位置:navigator.geolocation.getCurrentPosition 无效
MDN的例子,本地运行没有打印地理位置,也没有报错,为何?求指导
刚开始PC端一直返回超时,可能是PC端不支持,用手机打开后又提示:error.code 1 PERMISSION_DENIED
手机谷歌浏览器报错:err.code 1,不允许获取地理位置,如何解决?
哪里可以重新打开允许或者js如何修改是否允许?
var options = {
enableHighAccuracy: true,
timeout: 5000,
maximumAge: 0
};
function success(pos) {
var crd = pos.coords;
console.log('Your current position is:');
console.log('Latitude : ' + crd.latitude);
console.log('Longitude: ' + crd.longitude);
console.log('More or less ' + crd.accuracy + ' meters.');
};
function error(err) {
console.warn('ERROR(' + err.code + '): ' + err.message);
};
navigator.geolocation.getCurrentPosition(success, error, options);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
navigator.geolocation.getCurrentPosition在谷歌浏览器好像不行,其他浏览器可以,具体原因不清楚
getCurrentPosition
是异步的,调用后并不会立即返回结果。你的截图里面已经打印错误信息了,就是
ERROR(3): Timeout expired
,说明请求超时了。我也遇到了类似这个问题,使用geolocation.getCurrentPosition总是返回错误码3,求指教