iPhone - iOS5:电话间隙上的地理定位
我将 iPhone 更新至 iOS5,但现在地理位置功能不起作用 我的 Phonegap 应用程序。 我还有一个具有相同代码和地理位置的网络应用程序在这里工作。 你有同样的问题吗? 有什么建议吗? 谢谢! 标记
I updated the iPhone to iOS5 but now the geolocation doesn't work in
my Phonegap application.
I also have a webapp with the same code and geolocation works here.
Did you have the same problem?
Any advice?
Thanks!
Mark
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也遇到了同样的问题,尽管我将手机ios、xcode sdk和phonegap更新到1.1。现在,由于某些“随机”原因,在我的代码中, getCurrentLocation 陷入循环触发状态。我相当确定这与新的phonegap框架有关,因为即使在4.3模拟器上它的行为仍然相同,而之前的phonegap 1.0则不然。
我的解决方案是使用 watchPosition 并在第一次迭代后手动清除它,这听起来更好,因为 PhoneGap 1.0 在第一次运行时获取地理位置时遇到了一些问题。
i have had the same problem, although i updated my phone ios, xcode sdk and phonegap to 1.1. now for some 'random' reason, on my code the getCurrentLocation gets stuck triggering in loop. i'm fairly sure this has to do with the new phonegap framework, because even on the 4.3 emulator it still behaves the same, which it didnt before with phonegap 1.0.
my solution was to use the watchPosition and manually clear it after the first iteration, which sounds even better since phonegap 1.0 had some issues with getting your geolocation on the first run.