我一直在努力解决这个问题超过一个月,所以它可能非常简单,我错过了。我收到消息“代码:3消息:位置撤销超时”。
LOCATION CALL
var watchID = navigator.geolocation.watchPosition(watchSuccess, watchError, { timeout: 30000, enableHighAccuracy: true });
CONFIG.XML
<feature name="http://api.phonegap.com/1.0/geolocation"/>
<gap:plugin name="org.apache.cordova.geolocation" />
Under watchSuccess I have the following code:
console.log("accuracy: " + position.accuracy + "LAT: " + position.lattitude + " LONG: " + position.longitude)