轻松上手,快乐学习!

Geolocation position 属性


❮ Geolocation Object

实例

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

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;
}
亲自试一试 »

定义和用法

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

Coordinates 属性

属性 描述
position.coords 返回定义当前位置的 Coordinates 对象。
position.timestamp 返回 DOMTimeStamp 对象,表示位置被检索的时间。

浏览器支持

属性
position 5.0 9.0 3.5 5.0 16.0

❮ Geolocation Object