Android地圖和定位學(xué)習(xí)總結(jié)

Android地圖和定位學(xué)習(xí)總結(jié)

ID:47545964

大?。?1.51 KB

頁數(shù):9頁

時間:2020-01-14

Android地圖和定位學(xué)習(xí)總結(jié)_第1頁
Android地圖和定位學(xué)習(xí)總結(jié)_第2頁
Android地圖和定位學(xué)習(xí)總結(jié)_第3頁
Android地圖和定位學(xué)習(xí)總結(jié)_第4頁
Android地圖和定位學(xué)習(xí)總結(jié)_第5頁
資源描述:

《Android地圖和定位學(xué)習(xí)總結(jié)》由會員上傳分享,免費在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫。

1、Android地圖和定位學(xué)習(xí)總結(jié)首屆Google暑期大學(xué)生博客分享大賽——2010Android篇android.location包下有這么一些接口和類:InterfacesGpsStatus.ListenerGpsStatus.NmeaListenerLocationListenerClassesAddressCriteriaGeocoderGpsSatelliteGpsStatusLocationLocationManagerLocationProvidercom.google.android.map

2、s包下有這些類:AllClassesGeoPointItemizedOverlayItemizedOverlay.OnFocusChangeListenerMapActivityMapControllerMapViewMapView.LayoutParamsMapView.ReticleDrawModeMyLocationOverlayOverlayOverlay.SnappableOverlayItemProjectionTrackballGestureDetector我們邊看代碼邊熟悉這些類。要獲取當(dāng)

3、前位置坐標(biāo),就是從Location對象中獲取latitude和longitude屬性。那Location對象是如何創(chuàng)建的?LocationManagerlocMan=(LocationManager)getSystemService(Context.LOCATION_SERVICE);//LocationManager對象只能這么創(chuàng)建,不能用newLocationlocation=locMan.getLastKnownLocation(LocationManager.GPS_PROVIDER);if(lo

4、cation==null){location=locMan.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);}//注意要為應(yīng)用程序添加使用權(quán)限所謂getLastKnownLocation自然是獲取最新的地理位置信息,那LocationManager.GPS_PROVIDER和LocationManage

5、r.NETWORK_PROVIDER有什么區(qū)別呢?俺也不是學(xué)通信的,對這個不了解,在網(wǎng)上看到有人想“在室外有GPS定位,在室內(nèi)想用Wifi或基站定位”。除了直接使用LocationManager提供的靜態(tài)Provider(如GPS_PROVIDER和NETWORK_PROVIDER等)外,還可以使用我們自己創(chuàng)建的LocationProvider對象。創(chuàng)建LocationProvider對象一般要先創(chuàng)建Criteria對象,來設(shè)置我們的LocationProvider要滿足什么樣的標(biāo)準(zhǔn)CriteriamyC

6、ri=newCriteria();myCri.setAccuracy(Criteria.ACCURACY_FINE);//精確度myCri.setAltitudeRequired(false);//海拔不需要myCri.setBearingRequired(false);//Bearing是“軸承”的意思,此處可理解為地軸線之類的東西,總之BearingInformation是一種地理位置信息的描述myCri.setCostAllowed(true);//允許產(chǎn)生現(xiàn)金消費myCri.setPowerReq

7、uirement(Criteria.POWER_LOW);//耗電StringmyProvider=locMan.getBestProvider(myCri,true);publicStringgetBestProvider(Criteriacriteria,booleanenabledOnly)Returnsthenameoftheproviderthatbestmeetsthegivencriteria.Onlyprovidersthatarepermittedtobeaccessedbythecal

8、lingactivitywillbereturned.Ifseveralprovidersmeetthecriteria,theonewiththebestaccuracyisreturned.Ifnoprovidermeetsthecriteria,thecriteriaareloosenedinthefollowingsequence:powerrequirementaccuracybearingspeedaltitude

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動畫的文件,查看預(yù)覽時可能會顯示錯亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫負(fù)責(zé)整理代發(fā)布。如果您對本文檔版權(quán)有爭議請及時聯(lián)系客服。
3. 下載前請仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進(jìn)行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時可能由于網(wǎng)絡(luò)波動等原因無法下載或下載錯誤,付費完成后未能成功下載的用戶請聯(lián)系客服處理。