Geolocation position 属性
JavaScript基础 2022-06-08 15:04:29小码哥的IT人生shichen
Geolocation position 属性
实例
获取用户所在位置的经纬度:
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;
}
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>单击按钮以获取您的坐标。</p>
<button onclick="getLocation()">试一试</button>
<p><b>注释:</b>IE8 及更早版本不支持 geolocation 属性。</p>
<p id="demo"></p>
<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>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
position 属性返回设备在地球上的位置和高度。
position 属性
属性 | 描述 |
---|---|
position.coords | 返回定义当前位置的 Coordinates 对象。 |
position.timestamp | 返回 DOMTimeStamp 对象,表示位置被检索的时间。 |
浏览器支持
属性 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
position | 5.0 | 9.0 | 3.5 | 5.0 | 16.0 |