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; }
定义和用法
position 属性返回设备在地球上的位置和高度。
position 属性
属性 | 描述 |
---|---|
position.coords | 返回定义当前位置的 Coordinates 对象。 |
position.timestamp | 返回 DOMTimeStamp 对象,表示位置被检索的时间。 |
浏览器支持
属性 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
position | 5.0 | 9.0 | 3.5 | 5.0 | 16.0 |