Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android 百度地圖 SDK v3.3.0 -地圖定位和圖層展示

Android 百度地圖 SDK v3.3.0 -地圖定位和圖層展示

編輯:關於Android編程

 

在上一篇博客中,我們成功把地圖導入了我們的項目。本篇我們准備為地圖添加:第一,定位功能;第二,圖層展示,第三,結合方向傳感器,通過旋轉手機進行道路的方向確認。有了這三個功能,地圖已經可以為我服務了!

為了方便,我把所有的按鈕都放到了menu菜單中。
1.在AndroidManifest.xml配一個service

   
        
        

2、初次啟動定位

 

    /**
     * 初始化定位
     */
    private void initMyLocation() {
    	// 地圖初始化
		mBaiduMap = mMapView.getMap();
		MapStatusUpdate msu = MapStatusUpdateFactory.zoomTo(15.0f);
		mBaiduMap.setMapStatus(msu);
		// 開啟定位圖層
		//mBaiduMap.setMyLocationEnabled(true);
		// 定位初始化
		mLocClient = new LocationClient(this);
		mLocClient.registerLocationListener(myListener);
		LocationClientOption option = new LocationClientOption();
		option.setOpenGps(true);// 打開gps
		option.setCoorType(bd09ll); // 設置坐標類型
		option.setScanSpan(1000);//設置發起定位請求的間隔時間為1000ms
		option.setIsNeedAddress(true);//返回的定位結果包含地址信息
		option.setNeedDeviceDirect(true);//返回的定位結果包含手機機頭的方向
		mLocClient.setLocOption(option);//設置定位參數
		//mLocClient.start();
}

3.然後是定位的監聽器MyLocationListener:

    /**
      * 定位的監聽器
      * 
      * @author TanZuAi
      */
    public class MyOrientationListener implements SensorEventListener {

	private Context context;
	private SensorManager sensorManager;
	private Sensor sensor;

	private float lastX;

	private OnOrientationListener onOrientationListener;

	public MyOrientationListener(Context context) {
		this.context = context;
	}

	// 開始
	public void start() {
		// 獲得傳感器管理器
		sensorManager = (SensorManager) context
				.getSystemService(Context.SENSOR_SERVICE);
		if (sensorManager != null) {
			// 獲得方向傳感器
			sensor = sensorManager.getDefaultSensor(Sensor.TYPE_ORIENTATION);
		}
		// 注冊
		if (sensor != null) {// SensorManager.SENSOR_DELAY_UI
			sensorManager.registerListener(this, sensor,
					SensorManager.SENSOR_DELAY_UI);
		}

	}

	// 停止檢測
	public void stop() {
		sensorManager.unregisterListener(this);
	}

	@Override
	public void onAccuracyChanged(Sensor sensor, int accuracy) {

	}

	@Override
	public void onSensorChanged(SensorEvent event) {
		// 接受方向感應器的類型
		if (event.sensor.getType() == Sensor.TYPE_ORIENTATION) {
			// 這裡我們可以得到數據,然後根據需要來處理
			float x = event.values[SensorManager.DATA_X];

			if (Math.abs(x - lastX) > 1.0) {
				onOrientationListener.onOrientationChanged(x);
			}
			lastX = x;

		}
	}

	public void setOnOrientationListener(
			OnOrientationListener onOrientationListener) {
		this.onOrientationListener = onOrientationListener;
	}

	public interface OnOrientationListener {
		void onOrientationChanged(float x);
	}

}

4. 定位也是比較耗電的,所以我們在onStart中開啟定位,在onStop中關閉定位~~這樣應用最小化時就不會一直在哪GPS請求定位了,用戶 要是看你app一直在那定位,估計馬上就被卸載了~

@Override
    protected void onStart() {
    	// 開啟圖層定位
		mBaiduMap.setMyLocationEnabled(true);
		if (!mLocClient.isStarted())
		{
			mLocClient.start();
		}
		// 開啟方向傳感器
		myOrientationListener.start();
		super.onStart();
    }
    
    @Override
	protected void onStop()
	{
		// 關閉圖層定位
		mBaiduMap.setMyLocationEnabled(false);
		mLocClient.stop();
		// 關閉方向傳感器
		myOrientationListener.stop();
		super.onStop();
	}

在onCreate中初始化方向傳感器

      /**
	 * 初始化方向傳感器
	 */
	private void initOritationListener()
	{
		myOrientationListener = new MyOrientationListener(
				getApplicationContext());
		myOrientationListener
				.setOnOrientationListener(new OnOrientationListener()
				{
					@Override
					public void onOrientationChanged(float x)
					{
						mXDirection = (int) x;

						// 構造定位數據
						MyLocationData locData = new MyLocationData.Builder()
								.accuracy(mCurrentAccracy)
								// 此處設置開發者獲取到的方向信息,順時針0-360
								.direction(mXDirection)
								.latitude(mCurrentLantitude)
								.longitude(mCurrentLongitude).build();
						// 設置定位數據
						mBaiduMap.setMyLocationData(locData);
						// 設置自定義圖標
		mCurrentMarker = BitmapDescriptorFactory.fromResource(R.drawable.navi_map_gps_locked);
		mBaiduMap.setMyLocationConfigeration(new MyLocationConfiguration(
		mCurrentMode, true, mCurrentMarker));

	    }
	});
     }

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved