本文使用AndroID Studio开发。
获取定位信息相对简单,我们只需要如下几步:
第一步,注册百度账号,在百度地图开放平台新建应用、生成API_KEY。这些就不细说了,请前往这里:http://lbsyun.baidu.com/index.php?title=android-locsdk/guide/key
第二步,下载sdk,地址:http://lbsyun.baidu.com/index.php?title=android-locsdk/geosdk-android-download
第三步,建立AndroID Studio工程(略过不说),配置环境:
将解压后的文件放入libs文件夹下,并在src/main下建立一个叫做jnilibs的文件夹,并把解压后内的文件夹靠进去,如下图:
第四步,将BaIDulBS_AndroID.jar加入环境变量(右键,Add As library),并在app的build.gradle中的androID中添加:
sourceSets { main { jnilibs.srcDirs = ['libs'] } }
如图:
第五步,在AndroIDManifest.xml文件中声明权限:
<uses-permission androID:name="androID.permission.INTERNET"/> <uses-permission androID:name="androID.permission.ACCESS_WIFI_STATE" /> <uses-permission androID:name="androID.permission.ACCESS_NETWORK_STATE" /> <!--网络定位--> <uses-permission androID:name="androID.permission.ACCESS_COARSE_LOCATION" /> <!--GPS定位--> <uses-permission androID:name="androID.permission.ACCESS_FINE_LOCATION" />
并在application标签中添加如下内容:
<Meta-data androID:name="com.baIDu.lbsAPI.API_KEY" androID:value="你申请的API key" /> <service androID:name="com.baIDu.location.f" androID:enabled="true" androID:process=":remote" />
第六步,测试代码,获取定位信息:
public class MainActivity extends AppCompatActivity { public LocationClIEnt mLocationClIEnt = null; public BDLocationListener myListener = new MyLocationListener(); @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.activity_main); startLocate(); } /** * 定位 */ private voID startLocate() { mLocationClIEnt = new LocationClIEnt(getApplicationContext()); //声明LocationClIEnt类 mLocationClIEnt.registerLocationListener(myListener); //注册监听函数 LocationClIEntoption option = new LocationClIEntoption(); option.setLocationMode(LocationClIEntoption.LocationMode.Battery_Saving );//可选,默认高精度,设置定位模式,高精度,低功耗,仅设备 option.setCoorType("bd09ll");//可选,默认gcj02,设置返回的定位结果坐标系 int span = 1000; 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(); } private class MyLocationListener implements BDLocationListener { @OverrIDe public voID onReceiveLocation(BDLocation location) { StringBuffer sb = 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()); sb.append("\nlontitude : "); sb.append(location.getLongitude()); sb.append("\nradius : "); sb.append(location.geTradius()); 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定位成功"); } else if (location.getLocType() == BDLocation.TypeNetWorkLocation) {// 网络定位结果 sb.append("\naddr : "); sb.append(location.getAddrstr()); //运营商信息 sb.append("\noperationers : "); sb.append(location.getoperators()); sb.append("\ndescribe : "); sb.append("网络定位成功"); } else if (location.getLocType() == BDLocation.TypeOfflineLocation) {// 离线定位结果 sb.append("\ndescribe : "); sb.append("离线定位成功,离线定位结果也是有效的"); } else if (location.getLocType() == BDLocation.TypeServerError) { sb.append("\ndescribe : "); sb.append("服务端网络定位失败,可以反馈IMEI号和大体定位时间到loc-BUGs@baIDu.com,会有人追查原因"); } else if (location.getLocType() == BDLocation.TypeNetWorkException) { sb.append("\ndescribe : "); sb.append("网络不同导致定位失败,请检查网络是否通畅"); } else if (location.getLocType() == BDLocation.TypeCriteriaException) { sb.append("\ndescribe : "); sb.append("无法获取有效定位依据导致定位失败,一般是由于手机的原因,处于飞行模式下一般会造成这种结果,可以试着重启手机"); } sb.append("\nlocationdescribe : "); sb.append(location.getLocationDescribe());// 位置语义化信息 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()); } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。
总结以上是内存溢出为你收集整理的android使用百度地图SDK获取定位信息示例全部内容,希望文章能够帮你解决android使用百度地图SDK获取定位信息示例所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)