我使用此代碼,以獲得準確的用戶的位置...如何獲取用戶當前位置的最大精度
watchID=navigator.geolocation.watchPosition(handleGetCurrentPosition, handleGetCurrentPositionError, {enableHighAccuracy:true});
function handleGetCurrentPosition(location)
{
document.getElementById("lat").value = location.coords.latitude;
document.getElementById("lon").value = location.coords.longitude;
document.getElementById("accu").value =location.coords.accuracy;
document.forms["myform"].submit();
}
function handleGetCurrentPositionError(){
alert("Location could not be found.")
}
BT的結果我得到是不準確的。 我使用的代碼是否存在任何問題?
你對「準確」的定義是什麼? – acme