百度地图之地图显示和定位,获取定位的经纬度

    xiaoxiao2021-12-01  20

    在百度地图api开放平台,把demo下载

    把第三方的包粘贴到自己项目的libs包下(android-support-v4.jar这个包不要粘)

    在百度开发平台创建项目,输入项目名,

    从cmd中获取sha1值——cmd进入c盘,用户中的.android,输入keytool -list -v -keystore (此处粘贴c盘用户中.android文件夹下的debug-keystore)

    然后从自己的清单文件中获取项目的包名(如果包名在开发过程中有过改动,则使用更改以前的包名)

    创建完项目,将产生的AK值放到

          <application>                  <meta-data                           android:name="com.baidu.lbsapi.API_KEY"                           android:value="开发者 key" />         </application>(清单文件中,可将meta-daadata直接放入已经有的application中

    ____________________地图的显示__________________________

    然后按照百度地图android地图SDK——开发指南——hello baidumap往自己的项目里粘贴就可以了(注:android6.0及以上版本需要在java类中配置权限)

    ____________________地图的定位__________________________

    进入百度地图Api的android定位SDK——开发指南——配置环境找到配置build gradle的 sourceSets {         main {             jniLibs.srcDirs = ['libs']         } } 将这串代码配置到build gradle中 如:      buildTypes {              release {                   minifyEnabled false                   proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'              }      }      sourceSets {              main {                   jniLibs.srcDirs = ['libs']              }      } } 然后点击右上角的sync now进行同步 再到清单文件中配置定位服务: <service android:name="com.baidu.location.f" android:enabled="true" android:process=":remote"> </service> 权限:(注:android6.0及以上版本需要在java类中配置权限)       <uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" /> <uses-permission android:name="android.permission.WAKE_LOCK"/> <!-- 这个权限用于进行网络定位--> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"></uses-permission> <!-- 这个权限用于访问GPS定位--> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission> <!-- 用于访问wifi网络信息,wifi信息会用于进行网络定位--> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"></uses-permission> <!-- 获取运营商信息,用于支持提供运营商信息相关的接口--> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission> <!-- 这个权限用于获取wifi的获取权限,wifi信息会用来进行网络定位--> <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"></uses-permission> <!-- 用于读取手机当前的状态--> <uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission> <!-- 写入扩展存储,向扩展卡写入数据,用于写入离线定位数据--> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission> <!-- 访问网络,网络定位需要上网--> <uses-permission android:name="android.permission.INTERNET" /> <!-- SD卡读取权限,用户写入离线定位数据--> <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"></uses-permission> 布局 <com.baidu.mapapi.map.MapView android:id="@+id/bmapView" android:layout_width="match_parent" android:layout_height="match_parent" android:clickable="true" /> 以下是显示地图和定位以及获取经纬度的所有代码 public class MainActivity extends AppCompatActivity { private MapView mMapView; private Button jing,wei,difang; LocationClient mLocationClient; public BDLocationListener myListener = new MyLocationListener(); BaiduMap mBaiduMap; boolean isFirstLoc = true; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); SDKInitializer.initialize(getApplicationContext()); setContentView(R.layout.activity_main); mMapView = (MapView) findViewById(R.id.bmapView); jing= (Button) findViewById(R.id.jing); wei= (Button) findViewById(R.id.wei); difang= (Button) findViewById(R.id.di); mBaiduMap = mMapView.getMap(); // 开启定位图层 mBaiduMap.setMyLocationEnabled(true); mLocationClient = new LocationClient(this);//声明LocationClient类 mLocationClient.registerLocationListener(myListener);//注册监听函数 LocationClientOption option = new LocationClientOption(); option.setCoorType("bd09ll");//可选,默认gcj02,设置返回的定位结果坐标系 int span=10000; option.setCoorType("bd09ll"); // 设置坐标类型 option.setScanSpan(span);//可选,默认0,即仅定位一次,设置发起定位请求的间隔需要大于等于1000ms才是有效的 option.setIsNeedAddress(true);//可选,设置是否需要地址信息,默认不需要 option.setOpenGps(true);//可选,默认false,设置是否使用gps option.setLocationNotify(true);//可选,默认false,设置是否当GPS有效时按照1S/1次频率输出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仿真结果,默认需要 mLocationClient.setLocOption(option); mLocationClient.start(); } public class MyLocationListener implements BDLocationListener { @Override public void onReceiveLocation(BDLocation location) { //Receive Location StringBuffer sb = new StringBuffer(256); StringBuffer lotitude=new StringBuffer(256);//获得经纬度的变量,直接用StringBuffer接受了 StringBuffer longitude=new StringBuffer(256); sb.append("time : "); sb.append(location.getTime()); sb.append("\nerror code : "); sb.append(location.getLocType()); sb.append("\nlatitude : "); sb.append(location.getLatitude()); lotitude.append(location.getLatitude()); jing.setText("经度"+lotitude.toString()); sb.append("\nlontitude : "); sb.append(location.getLongitude()); longitude.append(location.getLongitude()); wei.setText("纬度"+longitude.toString()); sb.append("\nradius : "); sb.append(location.getRadius()); // map view 销毁后不在处理新接收的位置 if (location == null || mMapView == null) { return; } MyLocationData locData = new MyLocationData.Builder() .accuracy(location.getRadius()) // 此处设置开发者获取到的方向信息,顺时针0-360 .direction(100).latitude(location.getLatitude()) .longitude(location.getLongitude()).build(); // 设置定位数据 mBaiduMap.setMyLocationData(locData); if (isFirstLoc) { isFirstLoc = false; LatLng ll = new LatLng(location.getLatitude(), location.getLongitude()); MapStatus.Builder builder = new MapStatus.Builder(); builder.target(ll).zoom(18.0f); mBaiduMap.animateMapStatus(MapStatusUpdateFactory.newMapStatus(builder.build())); } if (location.getLocType() == BDLocation.TypeGpsLocation) {// GPS定位结果 sb.append("\nspeed : "); sb.append(location.getSpeed());// 单位:公里每小时 sb.append("\nsatellite : "); sb.append(location.getSatelliteNumber()); sb.append("\nheight : "); sb.append(location.getAltitude());// 单位:米 sb.append("\ndirection : "); sb.append(location.getDirection());// 单位度 sb.append("\naddr : "); sb.append(location.getAddrStr()); sb.append("\ndescribe : "); sb.append("gps定位成功"); } sb.append("\nlocationdescribe : "); sb.append(location.getLocationDescribe());// 位置语义化信息 List<Poi> list = location.getPoiList();// POI数据 di.append(list.get(1).getName()); if (list != null) { sb.append("\npoilist size = : "); for (Poi p : list) { sb.append("\npoi= : "); sb.append(p.getId() + " " + p.getName() + " " + p.getRank()); } } Log.i("BaiduLocationApiDem", sb.toString()); Toast.makeText(MainActivity.this, "经度:"+lotitude.toString()+"纬度:"+longitude.toString(), Toast.LENGTH_SHORT).show(); } } @Override protected void onDestroy() { super.onDestroy(); //在activity执行onDestroy时执行mMapView.onDestroy(),实现地图生命周期管理 mMapView.onDestroy(); } @Override protected void onResume() { super.onResume(); //在activity执行onResume时执行mMapView. onResume (),实现地图生命周期管理 mMapView.onResume(); } @Override protected void onPause() { super.onPause(); //在activity执行onPause时执行mMapView. onPause (),实现地图生命周期管理 mMapView.onPause(); } } 以上就是百度地图的地图显示和定位的简单实现了

    转载请注明原文地址: https://ju.6miu.com/read-679574.html

    最新回复(0)