小码哥的IT人生

Geolocation coordinates 属性

JavaScript基础 2022-06-08 15:04:26小码哥的IT人生shichen

Geolocation coordinates 属性

实例

获取用户所在位置的经纬度:

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

定义和用法

coordinates 属性返回设备在地球上的位置和高度。

Coordinates 属性

属性 描述
coordinates.latitude 返回位置的纬度,以十进制度数计。
coordinates.longitude 返回位置的经度,以十进制度数计。
coordinates.altitude 返回位置的高度,相对于海平面,以米计。
coordinates.accuracy 返回 latitude 和 longitude 属性的精度,以米计。
coordinates.altitudeAccuracy 返回 altitude 属性的精度,以米计。
coordinates.heading 返回设备行进的方向。该值以度数计,表示设备与正北方向相差多远。 0 度代表正北,方向为顺时针方向(东为 90 度,西为 270 度)。如果速度为 0,则 heading 为 NaN。如果设备无法提供航向信息,则该值为 null。
coordinates.speed 返回设备的速度,以米/秒为单位。该值可以为 null。

浏览器支持

属性 Chrome IE Firefox Safari Opera
coordinates 5.0 9.0 3.5 5.0 10.6

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024