I read so many post about this. I didn't find a solution. What i need is to update my current position. So if i will keep moving, i need to know (each 5 seconds) my new position. I understand that watchPosition doesn't work with IOS.
i'm starting from official example and i mix with setInterval
// Wait for PhoneGap to load
//
document.addEventListener("deviceready", onDeviceReady, false);
// PhoneGap is ready
//
function onDeviceReady() {
setInterval(navigator.geolocation.getCurrentPosition(onSuccess, onError),5000);
}
// onSuccess Geolocation
//
function onSuccess(position) {
alert("ENTRY");
var element = document.getElementById('geolocation');
element.innerHTML = 'Latitude: ' + position.coords.latitude + '<br />' +
'Longitude: ' + position.coords.longitude + '<br />' +
'Altitude: ' + position.coords.altitude + '<br />' +
'Accuracy: ' + position.coords.accuracy + '<br />' +
'Altitude Accuracy: ' + position.coords.altitudeAccuracy + '<br />' +
'Heading: ' + position.coords.heading + '<br />' +
'Speed: ' + position.coords.speed + '<br />' +
'Timestamp: ' + new Date(position.timestamp) + '<br />';
}
// onError Callback receives a PositionError object
//
function onError(error) {
alert('code: ' + error.code + '\n' +
'message: ' + error.message + '\n');
}
The result is that i see just one times all information. And then stopping. Could someone help me?