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;
}
亲自试一试 »
定义和用法
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。 |
浏览器支持
属性 | |||||
---|---|---|---|---|---|
coordinates | 5.0 | 9.0 | 3.5 | 5.0 | 10.6 |
❮ Geolocation Object