嗨,基本上我有一个应用程序需要每 150 秒获取一次当前位置,我使用的是安卓 2.3 的中国平板电脑,它没有 GPS,我只使用手机网络。我一直在 deviceready 函数中使用这段代码来获取当前位置:
setInterval(
function(){
if (navigator.network.connection.type != Connection.NONE && navigator.geolocation) {
watchID = navigator.geolocation.getCurrentPosition(
function(position){
plat = position.coords.latitude;
plon = position.coords.longitude;
console.log('location success');
if(map != null){
map.setView({center: new Microsoft.Maps.Location(plat,plon) });
pintaxi.setLocation(new Microsoft.Maps.Location(plat,plon));
}
count++;
if(count == 4){
count = 0;
console.log('Send data');
$.post("http://m2media.mx/plataforma/setpos.php", {latitud: plat, longitud: plon, referencia: 'DEV-008'});
}
},
displayError,
{ timeout: 30000 });
}
else{
if(watchID != null) navigator.geolocation.clearWatch(watchID);
console.log('No connection, fail');
}
}, 60000
);
重要的是,这个应用程序的活动在启动时运行,所以我的启动接收器是这样的:
public void onReceive(Context context, Intent intent) {
Intent i = new Intent(context, SmarttaxiActivity.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
}
问题是getCurrent位置总是抛出超时异常,起初当应用程序启动时,在启用3g之前有大约10到20秒的间隔,但即使在启用3g之后它仍然会抛出超时异常,在应用程序内我具有使用互联网连接的其他功能,例如 twitter 小部件,并且它们运行没有问题。
问题是,如果我在启动定位功能后手动运行应用程序,效果会很好。我在 logcat 上没有看到任何异常,我已经尝试修复这个三天但仍然没有运气,我希望有人对可能是什么问题或者我使用的逻辑是否错误有一些想法。
感谢您的时间。