編輯:Android開發教程
本篇文章主要講解Baidu Map API中MyLocationOverlay的使用。故名思義,MyLocation中文釋義為“我的 位置”,而Overlay則是“圖層”或“覆蓋物”的意思,MyLocationOverlay的作用正是用於在地圖上標注自己 所處的位置。它跟使用ItemizedOverlay非常相似,只不過MyLocationOverlay標記的只有一個點。
在地圖 上標記用戶當前所處位置其實是一個GPS定位應用。首先通過GPS定位獲取到用戶當前所在位置的經緯度,再將 該經緯度所代表的點在地圖上標出來。其實除了在地圖上標注自己所處的位置外,我們通常還有這樣的需求: “如果我的位置發生改變,要能夠實時在地圖上體現出來”。
下面我們就來一步步實現上面想要的功能, 主要是通過MyLocationOverlay結合LocationListener來實現的。
1)創建布局文件 res/layout/main.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <com.baidu.mapapi.MapView android:id="@+id/map_View" android:layout_width="fill_parent" android:layout_height="fill_parent" android:clickable="true" /> </LinearLayout>
2)創建Activity繼承com.baidu.mapapi.MapActivity
package com.liufeng.baidumap; import android.location.Location; import android.os.Bundle; import com.baidu.mapapi.BMapManager; import com.baidu.mapapi.GeoPoint; import com.baidu.mapapi.LocationListener; import com.baidu.mapapi.MKLocationManager; import com.baidu.mapapi.MapActivity; import com.baidu.mapapi.MapController; import com.baidu.mapapi.MapView; import com.baidu.mapapi.MyLocationOverlay; /** * 創建Activity(繼承com.baidu.mapapi.MapActivity) * * @author liufeng * @date 2011-05-02 */ public class MyLocationActivity extends MapActivity implements LocationListener { private BMapManager mapManager; private MKLocationManager mLocationManager = null; private MyLocationOverlay myLocationOverlay; private MapView mapView; private MapController mapController; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // 初始化MapActivity mapManager = new BMapManager(getApplication()); // init方法的第一個參數需填入申請的API Key mapManager.init("285B415EBAB2A92293E85502150ADA7F03C777C4", null); super.initMapActivity(mapManager); mLocationManager = mapManager.getLocationManager(); // 注冊位置更新事件 mLocationManager.requestLocationUpdates(this); // 使用GPS定位 mLocationManager.enableProvider((int) MKLocationManager.MK_GPS_PROVIDER); mapView = (MapView) findViewById(R.id.map_View); // 設置地圖模式為交通地圖 mapView.setTraffic(true); // 設置啟用內置的縮放控件 mapView.setBuiltInZoomControls(true); // 構造一個經緯度點 GeoPoint point = new GeoPoint((int) (26.597239 * 1E6), (int) (106.720397 * 1E6)); // 取得地圖控制器對象,用於控制MapView mapController = mapView.getController(); // 設置地圖的中心 mapController.setCenter(point); // 設置地圖默認的縮放級別 mapController.setZoom(7); // 添加定位圖層 myLocationOverlay = new MyLocationOverlay(this, mapView); // 注冊GPS位置更新的事件,讓地圖能實時顯示當前位置 myLocationOverlay.enableMyLocation(); // 開啟磁場感應傳感器 myLocationOverlay.enableCompass(); mapView.getOverlays().add(myLocationOverlay); } @Override protected boolean isRouteDisplayed() { return false; } @Override protected void onDestroy() { if (mapManager != null) { mapManager.destroy(); mapManager = null; } mLocationManager = null; super.onDestroy(); } @Override protected void onPause() { if (mapManager != null) { mapManager.stop(); } super.onPause(); } @Override protected void onResume() { if (mapManager != null) { mapManager.start(); } super.onResume(); } /** * 根據MyLocationOverlay配置的屬性確定是否在地圖上顯示當前位置 */ @Override protected boolean isLocationDisplayed() { return myLocationOverlay.isMyLocationEnabled(); } /** * 當位置發生變化時觸發此方法 * * @param location 當前位置 */ @Override public void onLocationChanged(Location location) { if (location != null) { // 將當前位置轉換成地理坐標點 final GeoPoint pt = new GeoPoint((int) (location.getLatitude() * 1000000), (int) (location.getLongitude() * 1000000)); // 將當前位置設置為地圖的中心 mapController.setCenter(pt); } } }
簡單解釋:代碼中是通過MyLocationOverlay在地圖上標記當前所在位置的,通過實現監聽器接口 com.baidu.mapapi.LocationListener並重寫它的onLocationChanged方法來監聽位置的變化。(注意 LocationListener是baidu map api裡的,而不是android自帶的)
到這裡基本介紹了Android開發的一些基本知識,在開發實際應用時最常用的幾個參考是:The Developer’s GuideAndroid Referen
bundle.putParcelable可以實現傳遞對象,但是這個對象的類必須實現Parcelable接口才能夠使用。下面是一個簡單的在Activity之間傳遞對象的例子
Activity表示一個屏幕, 至少包含一個處理應用程序的主界面屏幕, 可以由多個fragments組成.創建一個Activity, 需要繼承一個Activity類, 首
實現 Android 調用基於 IBM i 的 Web 服務作為 Internet 異構環境下的互操作技術,Web 服務被廣泛應用。由於 Web 服務具有跨語言、跨平台等