WLGeolocationPlugin.getLocation在仿真器或设备上没有给出答案

时间:2014-10-06 16:13:29

标签: android ibm-mobilefirst worklight-geolocation

Worklight 6.2.0.00-20120814-0824

位置代码在浏览器模拟器中运行良好,但在Android模拟器中失败,既没有成功也没有失败回调。

Logcat显示:

10-06 16:00:40.707:W / PluginManager(3193):THREAD WARNING:exec()调用WLGeolocationPlugin.getLocation阻塞主线程75ms。插件应该使用CordovaInterface.getThreadPool()。

代码:

var showPosition = function(position) {
        WL.Logger.debug("got a position");
        var latitude = Number(position.coords.latitude).toFixed(2);
        var longitude = Number(position.coords.longitude).toFixed(2);
        $("#currentLocation").text(latitude + " / " + longitude);

    };

    var positionError = function(err) { 
        WL.Logger.debug("failed to get  a position");
        $("#status").text("position error" + err); 

    };

    var geoPolicy = WL.Device.Geo.Profiles.RoughTracking(); // other profiles tried, same result

    WL.Device.Geo.acquirePosition(showPosition, positionError, geoPolicy);

Android清单

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> 
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> 
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"/> 

在我添加之前,我有不同的错误条件,表明权限错误,所以我认为权限现在是正确的。

-------编辑添加更多信息----

我已部署到真正的Android设备但仍未获得回调。我确实在LogCat中看到了这些消息,表明Worklight正在使用gps做一些事情,但到目前为止我的代码并没有提供答案

GC_FOR_ALLOC freed 738K, 11% free 10956K/12200K, paused 38ms, total 38ms
[ 10-07 15:30:21.656 13319:13340 D/com.worklight.androidgap.plugin.WLLocationListener ]
WLLocationListener.onLocationChanged in WLLocationListener.java:174 :: The location has been updated!
[ 10-07 15:30:21.661 13319:13340 D/com.worklight.androidgap.plugin.WLLocationListener ]
 WLLocationListener.win in WLLocationListener.java:100 :: Acquired location age: 178 milliseconds. More than maximumAge of 100 milliseconds. Ignoring.
[ 10-07 15:30:21.661 13319:13340 D/com.worklight.androidgap.plugin.WLLocationListener ]
WLLocationListener.onStatusChanged in WLLocationListener.java:156 :: The status of the provider gps has changed
[ 10-07 15:30:21.666 13319:13340 D/com.worklight.androidgap.plugin.WLLocationListener ]
WLLocationListener.onStatusChanged in WLLocationListener.java:162 :: gps is TEMPORARILY_UNAVAILABLE
[ 10-07 15:30:21.686   546:  549 D/dalvikvm ]
 GC_CONCURRENT freed 432K, 6% free 10266K/10920K, paused 1ms+1ms, total 15ms
[ 10-07 15:30:21.686   546:12382 D/dalvikvm ]
WAIT_FOR_CONCURRENT_GC blocked 9ms


 [ 10-07 15:55:05.761 13671:13695 D/com.worklight.androidgap.plugin.WLLocationListener ]
 WLLocationListener.win in WLLocationListener.java:100 :: Acquired location age: 170 milliseconds. More than maximumAge of 100 milliseconds. Ignoring.
 [ 10-07 15:55:05.791 13671:13695 D/dalvikvm ]
GC_FOR_ALLOC freed 530K, 9% free 10268K/11252K, paused 22ms, total 22ms
 [ 10-07 15:55:05.791 13671:13695 D/com.worklight.androidgap.plugin.WLLocationListener ]
 WLLocationListener.onStatusChanged in WLLocationListener.java:156 :: The status of the provider gps has changed
 [ 10-07 15:55:05.796 13671:13695 D/com.worklight.androidgap.plugin.WLLocationListener ]
 WLLocationListener.onStatusChanged in WLLocationListener.java:162 :: gps is TEMPORARILY_UNAVAILABLE
[ 10-07 15:55:06.366 13671:13695 D/NONE     ]
 navigator :: back pages/home.html
[ 10-07 15:55:08.406 13671:13695 D/NONE     ]
 navigator :: loadPage :: myProfile
[ 10-07 15:55:08.431 13671:13695 D/NONE     ]
 myProfile :: buildDepartmentList Art and Architecture,Billing And Accounts,Claims
[ 10-07 15:55:08.441 13671:13695 D/NONE     ]
 myProfile :: myProfileInit fetch acquire pos
[ 10-07 15:55:21.741   365:  568 D/libgps   ]
 proxy_gps_status_cb: called. status(4)
[ 10-07 15:55:21.741   365:  568 D/libgps   ]
 proxy_gps_status_cb: normal GPS icon mode.
[ 10-07 15:55:21.746   365:  568 I/libgps   ]
 disarming wakeLockTimer
[ 10-07 15:55:21.746   365:  568 I/libgps   ]
[proxy_gps_release_wakelock_cb][line = 653]: release_wakelock(0)

1 个答案:

答案 0 :(得分:4)

答案似乎是我需要指定maximumAge选项

  var geoPolicy = WL.Device.Geo.Profiles.RoughTracking(); // other profiles tried, same result

  geoPolicy.maximumAge = 5000;

  WL.Device.Geo.acquirePosition(showPosition, positionError, geoPolicy);

日志(如上所示)表示获得了答案,但根据其年龄被丢弃。似乎我需要指定maximumAge大于获得位置所需的时间。