之前我曾多次使用过以下脚本,但最近我还没能让它工作。当我尝试运行它时,我收到错误Location information is unavailable.
我不确定为什么。我已经检查了浏览器等的更新说明,看看这是否已被删除,我找不到这种情况的参考。
如果有人知道我做错了什么,如果你能指出我正确的方向,我将非常感激。
提前致谢!
<!DOCTYPE html>
<html>
<body>
<p>Click the button to get your coordinates.</p>
<button onclick="getLocation()">Try It</button>
<p id="demo"></p>
<script>
var x = document.getElementById("demo");
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition, showError);
} else {
x.innerHTML = "Geolocation is not supported by this browser.";
}
}
function showPosition(position) {
x.innerHTML = "Latitude: " + position.coords.latitude +
"<br>Longitude: " + position.coords.longitude;
}
function showError(error) {
switch(error.code) {
case error.PERMISSION_DENIED:
x.innerHTML = "User denied the request for Geolocation."
break;
case error.POSITION_UNAVAILABLE:
x.innerHTML = "Location information is unavailable."
break;
case error.TIMEOUT:
x.innerHTML = "The request to get user location timed out."
break;
case error.UNKNOWN_ERROR:
x.innerHTML = "An unknown error occurred."
break;
}
}
</script>
</body>
</html>
答案 0 :(得分:1)
我认为您使用的是Chrome,而您的网站没有SSL权利?不幸的是,在这种情况下,gelocation不适用于Chrome。你必须在其他浏览器上测试ie。 Firefox或为您的网站获取SSL。