gpt4 book ai didi

internet-explorer - 该网站无权使用 Geolocation API

转载 作者:行者123 更新时间:2023-12-04 16:40:28 24 4
gpt4 key购买 nike

我在尝试使用地理定位 api 时遇到此错误:

This website does not have permission to use the Geolocation API

奇怪的是,同一个网站在某些系统(安装了 IE.9 和 I.E10)上运行良好,但在安装了 I.E 9 的系统上却抛出错误 已安装。

我们在不同的系统上对其进行了测试,但它仅在安装了 I.E9 的特定系统上抛出错误。

  • 我们是否需要一些浏览器设置才能使用此 API?
  • 我们的网站需要哪些许可才能使用地理定位 API?

代码:

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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com