[问题] 隧道内或地下室定位?

楼主: HelloJimmy (Angel Michael)   2014-09-14 22:45:22
大家好,
我写了一支程式去纪录定位座标,
因有考量到GPS无法定位问题,
因此我有使用GPS_Provider与Network_Provider.
程式如下:
Location location=null;
locationMgr = (LocationManager)
(ctx.getSystemService(Context.LOCATION_SERVICE));
isGPSEnabled = locationMgr.isProviderEnabled(LocationManager.GPS_PROVIDER);
isNetworkEnabled =
locationMgr.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
if (isGPSEnabled || isNetworkEnabled) {
//若GPS有效则以GPS优先
if (isGPSEnabled) {
if (location == null) {
locationMgr.requestLocationUpdates(LocationManager.GPS_PROVIDER,..略);
if (locationMgr != null) {
location = locationMgr.getLastKnownLocation(LocationManager.
GPS_PROVIDER);
}
}
}
//若GPS无效,则以网络定位
if (isNetworkEnabled) {
if(location == null){
locationMgr.requestLocationUpdates(LocationManager.NETWORK_PROVIDER,.略);
if (locationMgr != null) {
location = locationMgr.getLastKnownLocation(LocationManager.
NETWORK_PROVIDER);
}
}
}
}
但我在捷运隧道测试时我的程式却定不到位,
但是Google Map若可以!!
请问有人知道原因吗?
谢谢!
作者: bdvstg (bdvstg)   2014-09-18 15:02:00
GoogleMap还会使用G-Sensor来辅助吧(听说的)
作者: JULONE780701 (亚)   2014-09-18 22:53:00
因为你GPS有效,所以用GPS但你GPS确抓不到位置...就这样...
楼主: HelloJimmy (Angel Michael)   2014-09-19 00:32:00
GPS有效却抓不到位置?那如何判断切到Network_Provider
作者: hayden2111 (hayden)   2014-09-19 01:37:00
之前看过有用getLastKnownLocation("gps") != null的方式来判定GPS是否有效,可以试试看

Links booklink

Contact Us: admin [ a t ] ucptt.com