本篇文章主要講解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內建的)