手机上的Gps准确度

时间:2013-03-04 11:19:41

标签: android cordova

在android native中,我们可以识别使用

获得的gps位置的准确性
locationProvider.getAccuracy()

参考:LocationProvider

在phonegap中是否有类似的方法来识别geolocation.watchPositiongeolocation.getCurrentPosition方法获得的GPS位置的准确性。

2 个答案:

答案 0 :(得分:3)

返回的位置对象包含符合性:

var onSuccess = function(position) {
alert('Latitude: '          + position.coords.latitude          + '\n' +
      'Longitude: '         + position.coords.longitude         + '\n' +
      'Altitude: '          + position.coords.altitude          + '\n' +
      'Accuracy: '          + position.coords.accuracy          + '\n' +
      'Altitude Accuracy: ' + position.coords.altitudeAccuracy  + '\n' +
      'Heading: '           + position.coords.heading           + '\n' +
      'Speed: '             + position.coords.speed             + '\n' +
      'Timestamp: '         + new Date(position.timestamp)      + '\n');

};

答案 1 :(得分:1)

您可以使用watchPosition代替getCurrentPosition。那你就是你的 每次有变化时都会触发onSuccess函数 位置(当它更准确时)。在此功能中,您可以检查 准确性然后用clearWatch停止gps ensor

礼貌(Wilin