我正在使用 HTML5 Geolocation 来获取用户的纬度和经度。直接打开页面时,它在所有浏览器上都可以正常工作,但是现在我必须将地理位置代码放在 iframe 中。将其放入 iframe 后,地理位置不会提示用户输入坐标。
当页面在 iframe 中加载时,如何获取用户的纬度和经度?
假设这是代码:
<!DOCTYPE html>
<html>
<body>
<p id="demo">Click the button to get your coordinates:</p>
<button onclick="getLocation()">Try It</button>
<script>
var x=document.getElementById("demo");
function getLocation()
{
if (navigator.geolocation)
{
navigator.geolocation.getCurrentPosition(showPosition);
}
else{x.innerHTML="Geolocation is not supported by this browser.";}
}
function showPosition(position)
{
x.innerHTML="Latitude: " + position.coords.latitude +
"<br>Longitude: " + position.coords.longitude;
}
</script>
</body>
</html>