我有任务找到获取当前位置的地理位置。我面临的问题是当我第一次运行应用程序时它显示答案,如果我重复运行应用程序意味着它 显示错误:
code: 2
message: The operation couldn’t be completed. (kCLErrorDomain error 0.)
代码如下:
document.addEventListener("deviceready", onDeviceReady, false);
var watchID = null;
// PhoneGap is ready
//
function onDeviceReady() {
// Update every 3 seconds
var options = { frequency: 3000 };
watchID = navigator.geolocation.getPosition(onSuccess, onError, options);
}
// onSuccess Geolocation
//
function onSuccess(position) {
alert(position);
var element = document.getElementById('geolocation');
element.innerHTML = 'Latitude: ' + position.coords.latitude + '<br />' +
'Longitude: ' + position.coords.longitude + '<br />' +
'<hr />' + element.innerHTML;
}
// onError Callback receives a PositionError object
//
function onError(error) {
alert('code: ' + error.code + '\n' +
'message: ' + error.message + '\n');
console.log('code: ' + error.code + '\n' +
'message: ' + error.message + '\n');
}
我只在simulator中运行应用程序。我不知道哪里出错了?
答案 0 :(得分:0)
错误表示您丢失了连接。我通过运行我的应用程序然后进入飞行模式来获得该错误。希望有所帮助。