2011-01-13 70 views
0

在我的phonegap iPhone應用程序中,雖然我正在嘗試使用sencha-touch加載帶谷歌地圖存取權的html。通知顯示「/ iphone simulator /...../ index.html訪問您的位置」。我如何將html文件名更改爲應用程序名稱?phonegap應用程序位置訪問問題?

回答

1

確保在phonegap初始化完成後調用「navigator.geolocation.getCurrentPosition」。因此,例如:

document.addEventListener('deviceready', function() { 
navigator.geolocation.getCurrentPosition(successCallback, errorCallback); 
}, false); 

如果仍然無法解決問題,請嘗試添加延遲。