Bootstrap

Android 百度地图定位实现仿钉钉签到打卡功能(附源码)

导语

本章根据百度地图API,实现仿钉钉打卡功能。用到了基础地图、覆盖物、定位图层、陀螺仪方法、悬浮信息弹框。


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

请先注册注册百度账号和获取密钥,并实现地图显示出来。(注意:密钥、权限要设置)

另外,我得说明本章所下载官方Demo 和 导入的jar包和so文件。自定义下载即可,如下图:


接下来,一起看实现效果。

源码Git地址:BaiduMapApp

效果图

             


实现代码·三步骤

第一步:基础地图和方向传感器

类先实现方向传感器 implements SensorEventListener


  
  
  1. @Override
  2. public void onSensorChanged(SensorEvent sensorEvent) {
  3. double x = sensorEvent.values[SensorManager.DATA_X];
  4. if (Math.abs(x - lastX) > 1.0) {
  5. mCurrentDirection = ( int) x;
  6. locData = new MyLocationData.Builder()
  7. // 此处设置开发者获取到的方向信息,顺时针0-360
  8. .direction(mCurrentDirection).latitude(mCurrentLat)
  9. .longitude(mCurrentLon).build();
  10. mBaiduMap.setMyLocationData(locData);
  11. }
  12. lastX = x;
  13. }
  14. @Override
  15. public void onAccuracyChanged(Sensor sensor, int i) {
  16. }

  
  
  1. /**
  2. * 初始化地图
  3. */
  4. private void initBaiduMap() {
  5. mMapView = (MapView) findViewById(R.id.mapview);
  6. mBaiduMap = mMapView.getMap();
  7. mBaiduMap.setMapType(BaiduMap.MAP_TYPE_NORMAL);
  8. mBaiduMap.setMyLocationEnabled( true); //开启定位图层
  9. mSensorManager = (SensorManager) getSystemService(SENSOR_SERVICE); //获取传感器管理服务
  10. }

  
  
  1. @Override
  2. protected void onResume() {
  3. super.onResume();
  4. mMapView.onResume();
  5. //为系统的方向传感器注册监听器
  6. mSensorManager.registerListener( this, mSensorManager.getDefaultSensor(Sensor.TYPE_ORIENTATION),
  7. SensorManager.SENSOR_DELAY_UI);
  8. }

  
  
  1. @Override
  2. protected void onPause() {
  3. super.onPause();
  4. mMapView.onPause();
  5. }
  6. @Override
  7. protected void onStop() {
  8. super.onStop();
  9. //取消注册传感器监听
  10. mSensorManager.unregisterListener( this);
  11. }

第二步:开启定位


  
  
  1. /***
  2. * 定位选项设置
  3. * @return
  4. */
  5. public void getLocationClientOption() {
  6. mOption = new LocationClientOption();
  7. mOption.setLocationMode(LocationClientOption.LocationMode.Hight_Accuracy); //可选,默认高精度,设置定位模式,高精度,低功耗,仅设备
  8. mOption.setCoorType( "bd09ll"); //可选,默认gcj02,设置返回的定位结果坐标系,如果配合百度地图使用,建议设置为bd09ll;
  9. mOption.setScanSpan( 2000); //可选,默认0,即仅定位一次,设置发起连续定位请求的间隔需要大于等于1000ms才是有效的
  10. mOption.setIsNeedAddress( true); //可选,设置是否需要地址信息,默认不需要
  11. mOption.setIsNeedLocationDescribe( true); //可选,设置是否需要地址描述
  12. mOption.setNeedDeviceDirect( true); //可选,设置是否需要设备方向结果
  13. mOption.setLocationNotify( true); //可选,默认false,设置是否当gps有效时按照1S1次频率输出GPS结果
  14. mOption.setIgnoreKillProcess( true); //可选,默认true,定位SDK内部是一个SERVICE,并放到了独立进程,设置是否在stop的时候杀死这个进程,默认不杀死
  15. mOption.setIsNeedLocationDescribe( false); //可选,默认false,设置是否需要位置语义化结果,可以在BDLocation.getLocationDescribe里得到,结果类似于“在北京天安门附近”
  16. mOption.setIsNeedLocationPoiList( false); //可选,默认false,设置是否需要POI结果,可以在BDLocation.getPoiList里得到
  17. mOption.SetIgnoreCacheException( false); //可选,默认false,设置是否收集CRASH信息,默认收集
  18. mOption.setOpenGps( true); //可选,默认false,设置是否开启Gps定位
  19. mOption.setIsNeedAltitude( false); //可选,默认false,设置定位时是否需要海拔信息,默认不需要,除基础定位版本都可用
  20. client = new LocationClient( this);
  21. client.setLocOption(mOption);
  22. client.registerLocationListener(BDAblistener);
  23. client.start();
  24. }

  
  
  1. /***
  2. * 接收定位结果消息,并显示在地图上
  3. */
  4. private BDAbstractLocationListener BDAblistener = new BDAbstractLocationListener() {
  5. @Override
  6. public void onReceiveLocation(BDLocation location) {
  7. //定位方向
  8. mCurrentLat = location.getLatitude();
  9. mCurrentLon = location.getLongitude();
  10. //个人定位
  11. locData = new MyLocationData.Builder()
  12. .direction(mCurrentDirection).latitude(location.getLatitude())
  13. .longitude(location.getLongitude()).build();
  14. mBaiduMap.setMyLocationData(locData);
  15. mBaiduMap.setMyLocationConfiguration( new MyLocationConfiguration(
  16. MyLocationConfiguration.LocationMode.NORMAL, true, null));
  17. //更改UI
  18. Message message = new Message();
  19. message.obj = location;
  20. mHandler.sendMessage(message);
  21. }
  22. };

第三步:更改UI


  
  
  1. //设置打卡目标范围圈
  2. private void setCircleOptions() {
  3. if (mDestinationPoint == null) return; //打卡坐标不能为空
  4. OverlayOptions ooCircle = new CircleOptions().fillColor( 0x4057FFF8)
  5. .center(mDestinationPoint).stroke( new Stroke( 1, 0xB6FFFFFF)).radius(DISTANCE);
  6. mBaiduMap.addOverlay(ooCircle);
  7. }

  
  
  1. /**
  2. * 添加地图文字
  3. *
  4. * @param point
  5. * @param str
  6. * @param color 字体颜色
  7. */
  8. private void setTextOption(LatLng point, String str, String color) {
  9. //使用MakerInfoWindow
  10. if (point == null) return;
  11. TextView view = new TextView(getApplicationContext());
  12. view.setBackgroundResource(R.mipmap.map_textbg);
  13. view.setPadding( 0, 23, 0, 0);
  14. view.setTypeface(Typeface.DEFAULT_BOLD);
  15. view.setTextSize( 14);
  16. view.setGravity(Gravity.CENTER);
  17. view.setText(str);
  18. view.setTextColor(Color.parseColor(color));
  19. mInfoWindow = new InfoWindow(view, point, 170);
  20. mBaiduMap.showInfoWindow(mInfoWindow);
  21. }

  
  
  1. /**
  2. * 设置marker覆盖物
  3. *
  4. * @param ll 坐标
  5. * @param icon 图标
  6. */
  7. private void setMarkerOptions(LatLng ll, int icon) {
  8. if (ll == null) return;
  9. BitmapDescriptor bitmap = BitmapDescriptorFactory.fromResource(icon);
  10. MarkerOptions ooD = new MarkerOptions().position(ll).icon(bitmap);
  11. mBaiduMap.addOverlay(ooD);
  12. }

  
  
  1. //改变地图缩放
  2. private void setMapZoomScale(LatLng ll) {
  3. if (mDestinationPoint == null) { //打卡坐标不为空
  4. mZoomScale = getZoomScale(ll);
  5. mBaiduMap.animateMapStatus(MapStatusUpdateFactory.newLatLngZoom(ll, mZoomScale)); //缩放
  6. } else {
  7. mZoomScale = getZoomScale(ll);
  8. mBaiduMap.animateMapStatus(MapStatusUpdateFactory.newLatLngZoom(mCenterPos, mZoomScale)); //缩放
  9. }
  10. }

  
  
  1.      /**
  2. * 获取地图的中心点和缩放比例
  3. *
  4. * @return float
  5. */
  6. private float getZoomScale(LatLng LocationPoint) {
  7. double maxLong; //最大经度
  8. double minLong; //最小经度
  9. double maxLat; //最大纬度
  10. double minLat; //最小纬度
  11. List<Double> longItems = new ArrayList<Double>(); //经度集合
  12. List<Double> latItems = new ArrayList<Double>(); //纬度集合
  13. if ( null != LocationPoint) {
  14. longItems.add(LocationPoint.longitude);
  15. latItems.add(LocationPoint.latitude);
  16. }
  17. if ( null != mDestinationPoint) {
  18. longItems.add(mDestinationPoint.longitude);
  19. latItems.add(mDestinationPoint.latitude);
  20. }
  21. maxLong = longItems.get( 0); //最大经度
  22. minLong = longItems.get( 0); //最小经度
  23. maxLat = latItems.get( 0); //最大纬度
  24. minLat = latItems.get( 0); //最小纬度
  25. for ( int i = 0; i < longItems.size(); i++) {
  26. maxLong = Math.max(maxLong, longItems.get(i)); //获取集合中的最大经度
  27. minLong = Math.min(minLong, longItems.get(i)); //获取集合中的最小经度
  28. }
  29. for ( int i = 0; i < latItems.size(); i++) {
  30. maxLat = Math.max(maxLat, latItems.get(i)); //获取集合中的最大纬度
  31. minLat = Math.min(minLat, latItems.get(i)); //获取集合中的最小纬度
  32. }
  33. double latCenter = (maxLat + minLat) / 2;
  34. double longCenter = (maxLong + minLong) / 2;
  35. int jl = ( int) getDistance( new LatLng(maxLat, maxLong), new LatLng(minLat, minLong)); //缩放比例参数
  36. mCenterPos = new LatLng(latCenter, longCenter); //获取中心点经纬度
  37. int zoomLevel[] = { 2500000, 2000000, 1000000, 500000, 200000, 100000,
  38. 50000, 25000, 20000, 10000, 5000, 2000, 1000, 500, 100, 50, 20, 0};
  39. int i;
  40. for (i = 0; i < 18; i++) {
  41. if (zoomLevel[i] < jl) {
  42. break;
  43. }
  44. }
  45. float zoom = i + 4;
  46. return zoom;
  47. }
  48. /**
  49. * 缩放比例参数
  50. *
  51. * @param var0
  52. * @param var1
  53. * @return
  54. */
  55. public double getDistance(LatLng var0, LatLng var1) {
  56. if (var0 != null && var1 != null) {
  57. Point var2 = CoordUtil.ll2point(var0);
  58. Point var3 = CoordUtil.ll2point(var1);
  59. return var2 != null && var3 != null ? CoordUtil.getDistance(var2, var3) : - 1.0D;
  60. } else {
  61. return - 1.0D;
  62. }
  63. }

  
  
  1. /**
  2. * 处理连续定位的地图UI变化
  3. */
  4. private Handler mHandler = new Handler() {
  5. @Override
  6. public void handleMessage(Message msg) {
  7. super.handleMessage(msg);
  8. BDLocation location = (BDLocation) msg.obj;
  9. LatLng LocationPoint = new LatLng(location.getLatitude(), location.getLongitude());
  10. //打卡范围
  11. mDestinationPoint = new LatLng(location.getLatitude() * 1.0001, location.getLongitude() * 1.0001); //假设公司坐标
  12. setCircleOptions();
  13. //计算两点距离,单位:米
  14. mDistance = DistanceUtil.getDistance(mDestinationPoint, LocationPoint);
  15. if (mDistance <= DISTANCE) {
  16. //显示文字
  17. setTextOption(mDestinationPoint, "您已在餐厅范围内", "#7ED321");
  18. //目的地图标
  19. setMarkerOptions(mDestinationPoint, R.mipmap.arrive_icon);
  20. //按钮颜色
  21. //commit_bt.setBackgroundDrawable(getResources().getDrawable(R.mipmap.restaurant_btbg_yellow));
  22. mBaiduMap.setMyLocationEnabled( false);
  23. } else {
  24. setTextOption(LocationPoint, "您不在餐厅范围之内", "#FF6C6C");
  25. setMarkerOptions(mDestinationPoint, R.mipmap.restaurant_icon);
  26. //commit_bt.setBackgroundDrawable(getResources().getDrawable(R.mipmap.restaurant_btbg_gray));
  27. mBaiduMap.setMyLocationEnabled( true);
  28. }
  29. // mDistance_tv.setText("距离目的地:" + mDistance + "米");
  30. //缩放地图
  31. setMapZoomScale(LocationPoint);
  32. }
  33. };

实现时间显示


  
  
  1. /**
  2. * 设置系统时间
  3. */
  4. private Runnable run = new Runnable() {
  5. @Override
  6. public void run() {
  7. SimpleDateFormat simpleDateFormat = new SimpleDateFormat( "HH:mm:ss"); // HH:mm:ss
  8. Date date = new Date(System.currentTimeMillis()); //获取当前时间
  9. mTime_tv.setText(simpleDateFormat.format(date)); //更新时间
  10. mHandler.postDelayed(run, 1000);
  11. }
  12. };
        mHandler.post(run);//设置系统时间

  
  

最后,收尾操作


  
  
  1. @Override
  2. protected void onDestroy() {
  3. if (BDAblistener != null) {
  4. client.unRegisterLocationListener(BDAblistener);
  5. }
  6. if (client != null && client.isStarted()) {
  7. client.stop();
  8. }
  9. mMapView.onDestroy();
  10. mMapView = null;
  11. mHandler.removeCallbacks(run);
  12. super.onDestroy();
  13. }


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

欢迎入坑。






(如果你觉得本人的文章对你有所帮助,客官慢走赏瓶水喝)
微信 支付宝
;