欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android 百度地圖定位實現(xiàn)仿釘釘簽到打卡功能的完整代碼

 更新時間:2020年04月09日 11:42:34   作者:艾陽丶  
這篇文章主要介紹了Android 百度地圖定位實現(xiàn)仿釘釘簽到打卡功能,本文通過實例代碼給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下

導語

本章根據(jù)百度地圖API,實現(xiàn)仿釘釘打卡功能。用到了基礎地圖、覆蓋物、定位圖層、陀螺儀方法、懸浮信息彈框。

百度地圖API地址  :Android 地圖SDK

請先注冊注冊百度賬號和獲取密鑰,并實現(xiàn)地圖顯示出來。(注意:密鑰、權限要設置)

另外,我得說明本章所下載官方Demo 和 導入的jar包和so文件。自定義下載即可,如下圖:

接下來,一起看實現(xiàn)效果。

源碼Git地址:BaiduMapApp

效果圖        

   

實現(xiàn)代碼·三步驟

第一步:基礎地圖和方向傳感器

類先實現(xiàn)方向傳感器 implements SensorEventListener

@Override
 public void onSensorChanged(SensorEvent sensorEvent) {
  double x = sensorEvent.values[SensorManager.DATA_X];
  if (Math.abs(x - lastX) > 1.0) {
   mCurrentDirection = (int) x;
   locData = new MyLocationData.Builder()
     // 此處設置開發(fā)者獲取到的方向信息,順時針0-360
     .direction(mCurrentDirection).latitude(mCurrentLat)
     .longitude(mCurrentLon).build();
   mBaiduMap.setMyLocationData(locData);
  }
  lastX = x;
 }
 
 @Override
 public void onAccuracyChanged(Sensor sensor, int i) {
 
 }
 /**
  * 初始化地圖
  */
 private void initBaiduMap() {
  mMapView = (MapView) findViewById(R.id.mapview);
  mBaiduMap = mMapView.getMap();
  mBaiduMap.setMapType(BaiduMap.MAP_TYPE_NORMAL);
  mBaiduMap.setMyLocationEnabled(true);//開啟定位圖層
  mSensorManager = (SensorManager) getSystemService(SENSOR_SERVICE);//獲取傳感器管理服務
 }
@Override
 protected void onResume() {
  super.onResume();
  mMapView.onResume();
  //為系統(tǒng)的方向傳感器注冊監(jiān)聽器
  mSensorManager.registerListener(this, mSensorManager.getDefaultSensor(Sensor.TYPE_ORIENTATION),
    SensorManager.SENSOR_DELAY_UI);
 }
 @Override
 protected void onPause() {
  super.onPause();
  mMapView.onPause();
 }
 
 @Override
 protected void onStop() {
  super.onStop();
  //取消注冊傳感器監(jiān)聽
  mSensorManager.unregisterListener(this);
 }

第二步:開啟定位

 /***
  * 定位選項設置
  * @return
  */
 public void getLocationClientOption() {
  mOption = new LocationClientOption();
  mOption.setLocationMode(LocationClientOption.LocationMode.Hight_Accuracy);//可選,默認高精度,設置定位模式,高精度,低功耗,僅設備
  mOption.setCoorType("bd09ll");//可選,默認gcj02,設置返回的定位結果坐標系,如果配合百度地圖使用,建議設置為bd09ll;
  mOption.setScanSpan(2000);//可選,默認0,即僅定位一次,設置發(fā)起連續(xù)定位請求的間隔需要大于等于1000ms才是有效的
  mOption.setIsNeedAddress(true);//可選,設置是否需要地址信息,默認不需要
  mOption.setIsNeedLocationDescribe(true);//可選,設置是否需要地址描述
  mOption.setNeedDeviceDirect(true);//可選,設置是否需要設備方向結果
  mOption.setLocationNotify(true);//可選,默認false,設置是否當gps有效時按照1S1次頻率輸出GPS結果
  mOption.setIgnoreKillProcess(true);//可選,默認true,定位SDK內(nèi)部是一個SERVICE,并放到了獨立進程,設置是否在stop的時候殺死這個進程,默認不殺死
  mOption.setIsNeedLocationDescribe(false);//可選,默認false,設置是否需要位置語義化結果,可以在BDLocation.getLocationDescribe里得到,結果類似于“在北京天安門附近”
  mOption.setIsNeedLocationPoiList(false);//可選,默認false,設置是否需要POI結果,可以在BDLocation.getPoiList里得到
  mOption.SetIgnoreCacheException(false);//可選,默認false,設置是否收集CRASH信息,默認收集
  mOption.setOpenGps(true);//可選,默認false,設置是否開啟Gps定位
  mOption.setIsNeedAltitude(false);//可選,默認false,設置定位時是否需要海拔信息,默認不需要,除基礎定位版本都可用
  client = new LocationClient(this);
  client.setLocOption(mOption);
  client.registerLocationListener(BDAblistener);
  client.start();
 }
 /***
  * 接收定位結果消息,并顯示在地圖上
  */
 private BDAbstractLocationListener BDAblistener = new BDAbstractLocationListener() {
  @Override
  public void onReceiveLocation(BDLocation location) {
   //定位方向
   mCurrentLat = location.getLatitude();
   mCurrentLon = location.getLongitude();
   //個人定位
   locData = new MyLocationData.Builder()
     .direction(mCurrentDirection).latitude(location.getLatitude())
     .longitude(location.getLongitude()).build();
   mBaiduMap.setMyLocationData(locData);
   mBaiduMap.setMyLocationConfiguration(new MyLocationConfiguration(
     MyLocationConfiguration.LocationMode.NORMAL, true, null));
   //更改UI
   Message message = new Message();
   message.obj = location;
   mHandler.sendMessage(message);
  }
 };

第三步:更改UI

 //設置打卡目標范圍圈
 private void setCircleOptions() {
  if (mDestinationPoint == null) return;//打卡坐標不能為空
  OverlayOptions ooCircle = new CircleOptions().fillColor(0x4057FFF8)
    .center(mDestinationPoint).stroke(new Stroke(1, 0xB6FFFFFF)).radius(DISTANCE);
  mBaiduMap.addOverlay(ooCircle);
 }
 /**
  * 添加地圖文字
  *
  * @param point
  * @param str
  * @param color 字體顏色
  */
 private void setTextOption(LatLng point, String str, String color) {
  //使用MakerInfoWindow
  if (point == null) return;
  TextView view = new TextView(getApplicationContext());
  view.setBackgroundResource(R.mipmap.map_textbg);
  view.setPadding(0, 23, 0, 0);
  view.setTypeface(Typeface.DEFAULT_BOLD);
  view.setTextSize(14);
  view.setGravity(Gravity.CENTER);
  view.setText(str);
  view.setTextColor(Color.parseColor(color));
  mInfoWindow = new InfoWindow(view, point, 170);
  mBaiduMap.showInfoWindow(mInfoWindow);
 }
 /**
  * 設置marker覆蓋物
  *
  * @param ll 坐標
  * @param icon 圖標
  */
 private void setMarkerOptions(LatLng ll, int icon) {
  if (ll == null) return;
  BitmapDescriptor bitmap = BitmapDescriptorFactory.fromResource(icon);
  MarkerOptions ooD = new MarkerOptions().position(ll).icon(bitmap);
  mBaiduMap.addOverlay(ooD);
 }
 //改變地圖縮放
 private void setMapZoomScale(LatLng ll) {
  if (mDestinationPoint == null) {//打卡坐標不為空
   mZoomScale = getZoomScale(ll);
   mBaiduMap.animateMapStatus(MapStatusUpdateFactory.newLatLngZoom(ll, mZoomScale));//縮放
  } else {
   mZoomScale = getZoomScale(ll);
   mBaiduMap.animateMapStatus(MapStatusUpdateFactory.newLatLngZoom(mCenterPos, mZoomScale));//縮放
  }
 }
 /**
  * 獲取地圖的中心點和縮放比例
  *
  * @return float
  */
 private float getZoomScale(LatLng LocationPoint) {
  double maxLong; //最大經(jīng)度
  double minLong; //最小經(jīng)度
  double maxLat;  //最大緯度
  double minLat;  //最小緯度
  List<Double> longItems = new ArrayList<Double>(); //經(jīng)度集合
  List<Double> latItems = new ArrayList<Double>();  //緯度集合
 
  if (null != LocationPoint) {
   longItems.add(LocationPoint.longitude);
   latItems.add(LocationPoint.latitude);
  }
  if (null != mDestinationPoint) {
   longItems.add(mDestinationPoint.longitude);
   latItems.add(mDestinationPoint.latitude);
  }
 
  maxLong = longItems.get(0); //最大經(jīng)度
  minLong = longItems.get(0); //最小經(jīng)度
  maxLat = latItems.get(0);  //最大緯度
  minLat = latItems.get(0);  //最小緯度
 
  for (int i = 0; i < longItems.size(); i++) {
   maxLong = Math.max(maxLong, longItems.get(i)); //獲取集合中的最大經(jīng)度
   minLong = Math.min(minLong, longItems.get(i)); //獲取集合中的最小經(jīng)度
  }
 
  for (int i = 0; i < latItems.size(); i++) {
   maxLat = Math.max(maxLat, latItems.get(i)); //獲取集合中的最大緯度
   minLat = Math.min(minLat, latItems.get(i)); //獲取集合中的最小緯度
  }
  double latCenter = (maxLat + minLat) / 2;
  double longCenter = (maxLong + minLong) / 2;
  int jl = (int) getDistance(new LatLng(maxLat, maxLong), new LatLng(minLat, minLong));//縮放比例參數(shù)
  mCenterPos = new LatLng(latCenter, longCenter); //獲取中心點經(jīng)緯度
  int zoomLevel[] = {2500000, 2000000, 1000000, 500000, 200000, 100000,
    50000, 25000, 20000, 10000, 5000, 2000, 1000, 500, 100, 50, 20, 0};
  int i;
  for (i = 0; i < 18; i++) {
   if (zoomLevel[i] < jl) {
    break;
   }
  }
  float zoom = i + 4;
  return zoom;
 }
 
 /**
  * 縮放比例參數(shù)
  *
  * @param var0
  * @param var1
  * @return
  */
 public double getDistance(LatLng var0, LatLng var1) {
  if (var0 != null && var1 != null) {
   Point var2 = CoordUtil.ll2point(var0);
   Point var3 = CoordUtil.ll2point(var1);
   return var2 != null && var3 != null ? CoordUtil.getDistance(var2, var3) : -1.0D;
  } else {
   return -1.0D;
  }
 }
 /**
  * 處理連續(xù)定位的地圖UI變化
  */
 private Handler mHandler = new Handler() {
  @Override
  public void handleMessage(Message msg) {
   super.handleMessage(msg);
   BDLocation location = (BDLocation) msg.obj;
   LatLng LocationPoint = new LatLng(location.getLatitude(), location.getLongitude());
   //打卡范圍
   mDestinationPoint = new LatLng(location.getLatitude() * 1.0001, location.getLongitude() * 1.0001);//假設公司坐標
   setCircleOptions();
   //計算兩點距離,單位:米
   mDistance = DistanceUtil.getDistance(mDestinationPoint, LocationPoint);
   if (mDistance <= DISTANCE) {
    //顯示文字
    setTextOption(mDestinationPoint, "您已在餐廳范圍內(nèi)", "#7ED321");
    //目的地圖標
    setMarkerOptions(mDestinationPoint, R.mipmap.arrive_icon);
    //按鈕顏色
    //commit_bt.setBackgroundDrawable(getResources().getDrawable(R.mipmap.restaurant_btbg_yellow));
    mBaiduMap.setMyLocationEnabled(false);
   } else {
    setTextOption(LocationPoint, "您不在餐廳范圍之內(nèi)", "#FF6C6C");
    setMarkerOptions(mDestinationPoint, R.mipmap.restaurant_icon);
    //commit_bt.setBackgroundDrawable(getResources().getDrawable(R.mipmap.restaurant_btbg_gray));
    mBaiduMap.setMyLocationEnabled(true);
   }
   // mDistance_tv.setText("距離目的地:" + mDistance + "米");
   //縮放地圖
   setMapZoomScale(LocationPoint);
  }
 };

實現(xiàn)時間顯示

 /**
  * 設置系統(tǒng)時間
  */
 private Runnable run = new Runnable() {
  @Override
  public void run() {
   SimpleDateFormat simpleDateFormat = new SimpleDateFormat("HH:mm:ss");// HH:mm:ss
   Date date = new Date(System.currentTimeMillis());//獲取當前時間
   mTime_tv.setText(simpleDateFormat.format(date)); //更新時間
   mHandler.postDelayed(run, 1000);
  }
 };
  mHandler.post(run);//設置系統(tǒng)時間

最后,收尾操作

 @Override
 protected void onDestroy() {
  if (BDAblistener != null) {
   client.unRegisterLocationListener(BDAblistener);
 
  }
  if (client != null && client.isStarted()) {
   client.stop();
  }
  mMapView.onDestroy();
  mMapView = null;
  mHandler.removeCallbacks(run);
  super.onDestroy();
 }

源碼地址:https://github.com/aiyangtianci/BaiduMapApp

總結

到此這篇關于Android 百度地圖定位實現(xiàn)仿釘釘簽到打卡功能的文章就介紹到這了,更多相關android 釘釘簽到打卡內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!

相關文章

  • Android SeekBar控制視頻播放進度實現(xiàn)過程講解

    Android SeekBar控制視頻播放進度實現(xiàn)過程講解

    這篇文章主要介紹了Android SeekBar控制視頻播放進度實現(xiàn)過程,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習吧
    2023-04-04
  • 基于Android實現(xiàn)仿QQ5.0側滑

    基于Android實現(xiàn)仿QQ5.0側滑

    本課程將帶領大家通過自定義控件實現(xiàn)QQ5.0側滑菜單,課程將循序漸進,首先實現(xiàn)最普通的側滑菜單,然后引入屬性動畫與拖動菜單效果相結合,最終實現(xiàn)QQ5.0側滑菜單效果。通過本課程大家會對側滑菜單有更深層次的了解,通過自定義控件和屬性動畫打造千變?nèi)f化的側滑菜單效果
    2015-12-12
  • Android實現(xiàn)底部彈出按鈕菜單升級版

    Android實現(xiàn)底部彈出按鈕菜單升級版

    這篇文章主要為大家詳細介紹了Android實現(xiàn)底部彈出按鈕菜單的升級版,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-10-10
  • 判斷Android程序是否在前臺運行的兩種方法

    判斷Android程序是否在前臺運行的兩種方法

    這篇文章主要介紹了判斷Android程序是否在前臺運行的兩種方法,本文直接給出實現(xiàn)代碼,,需要的朋友可以參考下
    2015-06-06
  • Android View的事件分發(fā)機制深入分析講解

    Android View的事件分發(fā)機制深入分析講解

    事件分發(fā)從手指觸摸屏幕開始,即產(chǎn)生了觸摸信息,被底層系統(tǒng)捕獲后會傳遞給Android的輸入系統(tǒng)服務IMS,通過Binder把消息發(fā)送到activity,activity會通過phoneWindow、DecorView最終發(fā)送給ViewGroup。這里就直接分析ViewGroup的事件分發(fā)
    2023-01-01
  • 學習使用Material Design控件(一)

    學習使用Material Design控件(一)

    這篇文章主要為大家介紹了學習使用Material Design控件的詳細教程,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-07-07
  • Android Studio多渠道批量打包及代碼混淆

    Android Studio多渠道批量打包及代碼混淆

    這篇文章主要介紹了Android Studio多渠道批量打包及代碼混淆的相關資料,非常不錯,具有參考借鑒價值,需要的朋友可以參考下
    2016-09-09
  • Android Bitmap和Drawable相互轉換的簡單代碼

    Android Bitmap和Drawable相互轉換的簡單代碼

    Android Bitmap和Drawable相互轉換的簡單代碼,需要的朋友可以參考一下
    2013-05-05
  • Android WebView 優(yōu)化之路

    Android WebView 優(yōu)化之路

    Android WebView 優(yōu)化之路,如何才能更有效的對Android WebView進行優(yōu)化,本文將為大家一一舉例,感興趣的小伙伴們可以參考一下
    2016-02-02
  • Android如何創(chuàng)建自定義ActionBar

    Android如何創(chuàng)建自定義ActionBar

    這篇文章主要教大家如何創(chuàng)建自定義的ActionBar,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-11-11

最新評論