定位:
@Override protected void onStart() { super.onStart(); mLocationClient.start(); } @Override protected void onStop() { super.onStop(); mLocationClient.stop(); } public LocationClient mLocationClient = null; public BDLocationListener myListener = (BDLocationListener) new MyLocationListener(); private void initLocation(){ LocationClientOption option = new LocationClientOption(); option.setLocationMode(LocationClientOption.LocationMode.Hight_Accuracy );//可选,默认高精度,设置定位模式,高精度,低功耗,仅设备 option.setCoorType("bd09ll");//可选,默认gcj02,设置返回的定位结果坐标系 // int span=1000; // option.setScanSpan(span);//可选,默认0,即仅定位一次,设置发起定位请求的间隔需要大于等于1000ms才是有效的 option.setScanSpan(0);//可选,默认0,即仅定位一次,设置发起定位请求的间隔需要大于等于1000ms才是有效的 option.setIsNeedAddress(true);//可选,设置是否需要地址信息,默认不需要 option.setOpenGps(true);//可选,默认false,设置是否使用gps option.setLocationNotify(false);//可选,默认false,设置是否当gps有效时按照1S1次频率输出GPS结果 option.setIsNeedLocationDescribe(true);//可选,默认false,设置是否需要位置语义化结果,可以在BDLocation.getLocationDescribe里得到,结果类似于“在北京天安门附近” option.setIsNeedLocationPoiList(true);//可选,默认false,设置是否需要POI结果,可以在BDLocation.getPoiList里得到 option.setIgnoreKillProcess(false);//可选,默认true,定位SDK内部是一个SERVICE,并放到了独立进程,设置是否在stop的时候杀死这个进程,默认不杀死 option.SetIgnoreCacheException(false);//可选,默认false,设置是否收集CRASH信息,默认收集 option.setEnableSimulateGps(false);//可选,默认false,设置是否需要过滤gps仿真结果,默认需要 // option.setAddrType("all"); // 定位的街道类型,只有设定为all才可以全部显示 mLocationClient.setLocOption(option); } private class MyLocationListener implements BDLocationListener{ @Override public void onReceiveLocation(BDLocation location){ double weidu = location.getLatitude(); double jingdu = location.getLongitude(); String address = location.getAddrStr(); String currentCity = location.getCity(); LogUtils.e(mContext,"当前定位城市:",currentCity); LogUtils.e(mContext,"当前定位地址:",address); LogUtils.e(mContext,"onLocationChanged闪屏界面当前纬度和经度",weidu+":"+jingdu); MyApplication.bundle.putDouble("currentLat",weidu); MyApplication.bundle.putDouble("currentLng",jingdu); myApplication.bundle.putString("current_city",currentCity); } }
public void init() { user_id = (String) SPUtils.get(mContext,"user_id",""); locationManager = (LocationManager) getSystemService(LOCATION_SERVICE); // long start = System.currentTimeMillis(); mLocationClient = new LocationClient(getApplicationContext()); //声明LocationClient类 mLocationClient.registerLocationListener( myListener ); //注册监听函数 }