作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在尝试使用地理定位 api 时遇到此错误:
This website does not have permission to use the Geolocation API
奇怪的是,同一个网站在某些系统(安装了 IE.9 和 I.E10)上运行良好,但在安装了 I.E 9 的系统上却抛出错误 已安装。
我们在不同的系统上对其进行了测试,但它仅在安装了 I.E9 的特定系统上抛出错误。
代码:
function geolocateUser()
{
// If the browser supports the Geolocation API
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(geolocationSuccess, geolocationError);
}
else {
alert("Your browser doesn't support the Geolocation API");
}
}
如果成功:
function geolocationSuccess(position) {
var userCurrentLatLong = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
}
如果出错:
function geolocationError(positionError) {
alert(positionError.message + "\n" + "you will be redirected to default location.");
}
最佳答案
这可能是 Windows 设置,至少在我的情况下是这样。尝试转到“设置”(在 Windows 中从“开始”菜单搜索)>“隐私”>“位置”,然后打开“位置 = 打开”。
关于internet-explorer - 该网站无权使用 Geolocation API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15742997/
我是一名优秀的程序员,十分优秀!