2
獲得原始GPS數據
標題說明了一切:)可能性從設備
我正在開發一個Web應用程序,並很想有從移動的所有數據(尤其是標題,衛星和速度的數量)設備。
通過這個代碼可以很容易地獲得經/緯度對:
navigator.geolocation.getCurrentPosition(function(position) {
alert("Your lat/lng pair is" + position.coords.latitude + ", " + position.coords.longitude);
});
是否有一種方式來獲得與HTML5的其他數據?