navigator.geolocation报告false第一个值

时间:2012-03-04 14:17:57

标签: javascript ios mobile geolocation mobile-safari

我目前正在制作一个移动网络应用程序,使用户可以随应用程序一起行走,它将测量所覆盖的距离(仅限直线)。显然,使用Haversine很好,计算工作正常。但是,我注意到在iOS 5(iPhone 3GS,未经测试的4和4G)上测试时会出现轻微的错误。

以下是我用来观察其位置的JavaScript:

var points = [ ]; // This will be an array holding all of the points we have recorded.

// Start watching the position:
navigator.geolocation.watchPosition(function(location) {
    var this_coords = { lat: location.coords.latitude, lng : location.coords.longitude };
    points.push(this_coords);
}, function() {  }, true);

// When we're done, I output them to the console:
var start = points[0],
end = points[points.length - 1];
console.log('Start: ' + start.lat + ', ' + start.lng);
console.log('End: ' + end.lat + ', ' + end.lng);

基本上,所有的点都记录在一个数组中,然后第一个和最后一个lat / long对用于Haversine。但是,输入到数组中的初始值似乎总是不正确(相当长的距离)。最终值始终正确(在~5米之内)。

有谁知道为什么第一次读数可能如此不准确,或者我怎么能绕过这个?我想也许只是忽略了第一个,并且进行了二读,但这显然不是很科学。

1 个答案:

答案 0 :(得分:2)

第一个位置是最快的响应然后它试图进一步缩小范围。当它尝试通过电话连接,wifi和gps进行连接时,它们都会在不同的时间出现。

您可以先使用position.coords.accuracy将其缩小,然后再执行。

e.g。

 if (position.coords.accuracy < 100){
           // if accuracy is less than 100m do something

    }