我試圖使用PhoneGap的使用API文檔,但得到以下錯誤消息地理位置,Android的地理位置使用PhoneGap的代碼:3錯誤
警報 代碼:3 消息:超時過期
我的代碼,
<script>
// Wait for Cordova to load
//
document.addEventListener("deviceready", onDeviceReady, false);
var watchID = null;
// Cordova is ready
//
function onDeviceReady() {
// Throw an error if no update is received every 30 seconds
var options = { timeout: 10000 };
watchID = navigator.geolocation.watchPosition(onSuccess, onError, options);
}
// onSuccess Geolocation
//
function onSuccess(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');
}
請諮詢我,我錯過了什麼。
我將超時時間增加到了30000,但仍然沒有運氣 – user2331670
您是否在支持GPS的手機中測試?嘗試90secs並去戶外。你應該能夠得到一個修復 –
去戶外,並設置超時到100000仍然無法正常工作,不斷收到超時消息。任何幫助? –