1. 程式人生 > >百度地圖開發(四)定位以及點選按鈕返回當前定位

百度地圖開發(四)定位以及點選按鈕返回當前定位

 效果圖:

 定位就分為三部分:

1:配置定位SDK引數

2:監聽定位返回結果

3:開啟定位


程式碼:

返回當前定位的程式碼,在按鈕的點選事件裡面呼叫

//把定位點再次顯現出來
MapStatusUpdate mapStatusUpdate = MapStatusUpdateFactory.newLatLng(latLng);
mBaiduMap.animateMapStatus(mapStatusUpdate);

 全部程式碼佈局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <RelativeLayout
        android:id="@+id/ceshiss"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <com.baidu.mapapi.map.MapView
            android:id="@+id/mapview"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1" />

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="40dp"
            android:layout_centerInParent="true"
            android:paddingBottom="20dp"
            android:src="@mipmap/dingwei2" />
        
        <ImageView
            android:id="@+id/sa_location"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:layout_margin="10dp"
            android:src="@mipmap/icon_location" />
    </RelativeLayout>
</LinearLayout>

MainActivity中的程式碼:

package com.example.administrator.baidumap1;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.ImageView;
import android.widget.Toast;
import com.baidu.location.BDLocation;
import com.baidu.location.BDLocationListener;
import com.baidu.location.LocationClient;
import com.baidu.location.LocationClientOption;
import com.baidu.mapapi.map.BaiduMap;
import com.baidu.mapapi.map.MapStatus;
import com.baidu.mapapi.map.MapStatusUpdate;
import com.baidu.mapapi.map.MapStatusUpdateFactory;
import com.baidu.mapapi.map.MapView;
import com.baidu.mapapi.map.MyLocationData;
import com.baidu.mapapi.model.LatLng;

public class MainActivity extends AppCompatActivity implements View.OnClickListener {

    private BaiduMap mBaiduMap;
    private MapView mMapView;
    private ImageView mSaLocation;
    private LatLng latLng;
    public LocationClient mLocationClient;
    private boolean isFirstLoc = true;//是否是首次定位
    public BDLocationListener myListener = new MyLocationListener();

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        setInit();
        initMap();
    }

    public void setInit() {
        mMapView = findViewById(R.id.mapview);
        mBaiduMap = mMapView.getMap();
        mSaLocation = findViewById(R.id.sa_location);
        mSaLocation.setOnClickListener(this);
    }

    /**
     * 定位
     */
    private void initMap() {
        mBaiduMap.setMapType(BaiduMap.MAP_TYPE_NORMAL);//預設顯示普通地圖
        mBaiduMap.setMyLocationEnabled(true);// 開啟定點陣圖層
        mLocationClient = new LocationClient(getApplicationContext());     //宣告LocationClient類
        initLocation();//配置定位SDK引數
        mLocationClient.registerLocationListener(myListener);    //註冊監聽函式
        mLocationClient.start();//開啟定位
        mLocationClient.requestLocation();//圖片點選事件,回到定位點
    }

    /**
     * 配置定位SDK引數
     */
    private void initLocation() {
        LocationClientOption option = new LocationClientOption();
        option.setCoorType("bd09ll");//可選,coorType - 取值有3個: 返回國測局經緯度座標系:gcj02 返回百度墨卡託座標系 :bd09 返回百度經緯度座標系 :bd09ll
        Log.e("獲取地址資訊設定", option.getAddrType());//獲取地址資訊設定
        option.setIsNeedAddress(true);//可選,設定是否需要地址資訊,預設不需要
        option.setOpenGps(true); // 是否開啟gps進行定位
        option.setLocationNotify(true);//可選,預設false,設定是否當GPS有效時按照1S/1次頻率輸出GPS結果
        option.setScanSpan(1000);//可選,設定的掃描間隔,單位是毫秒,設定發起定位請求的間隔需要大於等於1000ms才是有效的
        Log.e("獲取設定的Prod欄位值", option.getProdName());
        option.setLocationMode(LocationClientOption.LocationMode.Hight_Accuracy);//可選,預設高精度,設定定位模式,高精度,低功耗,僅裝置
        option.setNeedDeviceDirect(true);//在網路定位時,是否需要裝置方向- true:需要 ; false:不需要。預設為false
        option.SetIgnoreCacheException(false);//可選,預設false,設定是否收集CRASH資訊,預設收集
        option.setIgnoreKillProcess(false);//可選,預設true,定位SDK內部是一個SERVICE,並放到了獨立程序,設定是否在stop的時候殺死這個程序,預設不殺死
        option.setIsNeedLocationDescribe(true);//可選,預設false,設定是否需要位置語義化結果,可以在BDLocation
        // .getLocationDescribe裡得到,結果類似於“在北京天安門附近”
        option.setIsNeedLocationPoiList(true);//可選,預設false,設定是否需要POI結果,可以在BDLocation.getPoiList裡得到
        option.setEnableSimulateGps(false);//可選,預設false,設定是否需要過濾GPS模擬結果,預設需要
        mLocationClient.setLocOption(option);
    }

    @Override
    public void onClick(View view) {
        switch (view.getId()) {
            case R.id.sa_location:
                //把定位點再次顯現出來
                MapStatusUpdate mapStatusUpdate = MapStatusUpdateFactory.newLatLng(latLng);
                mBaiduMap.animateMapStatus(mapStatusUpdate);
                break;
        }
    }

    //實現BDLocationListener介面,BDLocationListener為結果監聽介面,非同步獲取定位結果
    public class MyLocationListener implements BDLocationListener {
        @Override
        public void onReceiveLocation(BDLocation location) {
            latLng = new LatLng(location.getLatitude(), location.getLongitude());
            // 構造定位資料
            MyLocationData locData = new MyLocationData.Builder()
                    .accuracy(location.getRadius())
                    // 此處設定開發者獲取到的方向資訊,順時針0-360
                    .direction(100).latitude(location.getLatitude())
                    .longitude(location.getLongitude()).build();
            mBaiduMap.setMyLocationData(locData);// 設定定位資料
//            mBaiduMap.setMyLocationEnabled(false);// 當不需要定點陣圖層時關閉定點陣圖層
            if (isFirstLoc) {
                isFirstLoc = false;
                latLng = new LatLng(location.getLatitude(), location.getLongitude());
                MapStatus.Builder builder = new MapStatus.Builder();
                builder.target(latLng).zoom(18.0f);
                mBaiduMap.animateMapStatus(MapStatusUpdateFactory.newMapStatus(builder.build()));

                if (location.getLocType() == BDLocation.TypeGpsLocation) {// GPS定位結果
                    Toast.makeText(MainActivity.this, location.getAddrStr(), Toast.LENGTH_SHORT).show();
                } else if (location.getLocType() == BDLocation.TypeNetWorkLocation) {// 網路定位結果
                    Toast.makeText(MainActivity.this, location.getAddrStr(), Toast.LENGTH_SHORT).show();
                } else if (location.getLocType() == BDLocation.TypeOffLineLocation) {// 離線定位結果
                    Toast.makeText(MainActivity.this, location.getAddrStr(), Toast.LENGTH_SHORT).show();
                } else if (location.getLocType() == BDLocation.TypeServerError) {//伺服器錯誤
                    Toast.makeText(MainActivity.this, "伺服器錯誤,請檢查", Toast.LENGTH_SHORT).show();
                } else if (location.getLocType() == BDLocation.TypeNetWorkException) {//網路錯誤
                    Toast.makeText(MainActivity.this, "網路錯誤,請檢查", Toast.LENGTH_SHORT).show();
                } else if (location.getLocType() == BDLocation.TypeCriteriaException) {//手機模式錯誤
                    Toast.makeText(MainActivity.this, "手機模式錯誤,請檢查是否飛行", Toast.LENGTH_SHORT).show();
                }
            }
        }
    }


    @Override
    protected void onResume() {
        super.onResume();
        mMapView.onResume();
    }

    @Override
    protected void onPause() {
        super.onPause();
        mMapView.onPause();
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        mMapView.onDestroy();
    }
}

這是定位之後獲取到的定位資訊

 程式碼是:

StringBuffer sb = new StringBuffer(256);
            sb.append(location.getTime());
            sb.append("\n獲取詳細地址資訊 " + location.getAddrStr());
            sb.append("\n獲取高度資訊,目前只有是GPS定位結果時才有效,單位米 " + location.getAltitude());
            sb.append("\n獲取樓層資訊,目前只在百度支援室內定位的地方有返回,預設null " + location.getBuildingID());
            sb.append("\n獲取城市 " + location.getCity());
            sb.append("\n獲取城市編碼 " + location.getCityCode());
            sb.append("\n獲取所用座標系 " + location.getCoorType());
            sb.append("\n獲取國家 " + location.getCountry());
            sb.append("\n獲取國家編碼 " + location.getCountryCode());
            sb.append("\ngps定位結果時,行進的方向,單位度 " + location.getDirection());
            sb.append("\n獲取區/縣資訊 " + location.getDistrict());
            sb.append("\n獲取樓層資訊,目前只在百度支援室內定位的地方有返回 " + location.getFloor());
            sb.append("\n獲取緯度座標 " + location.getLatitude());
            sb.append("\n獲取位置語義化資訊 " + location.getLocationDescribe());
            sb.append("\n獲取當前定位是國內還是國外 " + location.getLocationWhere());
            sb.append("\n獲取定位型別: 參考 定位結果描述 相關的欄位 " + location.getLocType());
            sb.append("\n獲取經度座標 " + location.getLongitude());
            sb.append("\n在網路定位結果的情況下,獲取網路定位結果是通過基站定位得到的還是通過wifi定位得到的還是GPS得結果 " + location.getNetworkLocationType());
            sb.append("\n獲取運營商資訊 " + location.getOperators());
            sb.append("\n獲取省份 " + location.getProvince());
            sb.append("\n獲取定位精度,預設值0.0f " + location.getRadius());
            sb.append("\ngps定位結果時,獲取gps鎖定用的衛星數 " + location.getSatelliteNumber());
            sb.append("\n獲取速度,僅gps定位結果時有速度資訊,單位公里/小時 " + location.	getSpeed());
            sb.append("\n獲取街道資訊 " + location.	getStreet());
            sb.append("\n獲取街道號碼 " + location.	getStreetNumber());
            sb.append("\nserver返回的當前定位時間 " + location.	getTime());
            sb.append("\n是否有地址資訊 " + location.	hasAddr());
            sb.append("\n是否包含高度資訊 " + location.hasAltitude());
            sb.append("\n是否包含半徑資訊 " + location.	hasRadius());
            sb.append("\n是否包含速度資訊 " + location.	hasSpeed());

            List<Poi> list = location.getPoiList();// POI資料
            if (list != null) {
                sb.append("\npoilist size = : ");
                sb.append(list.size());
                for (Poi p : list) {
                    sb.append("\npoi= : ");
                    sb.append(p.getId() + " " + p.getName() + " " + p.getRank());
                }
            }
            Log.e("描述:", sb.toString());

如果我們不想使用預設的藍色圓圈的定點陣圖標的話可以使用自己的,更改預設圖示方法:

//初始化圖示
bitmapDescriptors = BitmapDescriptorFactory.fromResource(R.mipmap.ic_location);
MyLocationConfiguration configuration = new MyLocationConfiguration(null, false, bitmapDescriptors,0x00000000,0x00000000);
mBaiduMap.setMyLocationConfigeration(configuration);

 放在定位監聽的方法裡面

下載地址:https://download.csdn.net/download/lanrenxiaowen/10743218