码迷,mamicode.com
首页 > 其他好文 > 详细

百度地图开发之获取定位地点

时间:2015-05-04 13:56:25      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:百度地图   定位 sdk   android   

在前面几次我们分别完成了数据检索和线路规划的功能,但是如果我们不知道自己位置,检索起来说是不是会很麻烦呢?

知道自己位置就可以根据自己的位置进行检索和路线规划。


定位服务

在读地图的定位服务是与基本地图服务分开的所以需要引入另外的so文件盒jar包,如果你选择的是复合包的话,只用一如so文件就OK了。


首先在清单文件中加上如下的服务

<span class="sy0" style="color: rgb(51, 153, 51);"><</span>service android<span class="sy0" style="color: rgb(51, 153, 51);">:</span><span class="kw3" style="color: rgb(0, 0, 102);">name</span><span class="sy0" style="color: rgb(51, 153, 51);">=</span><span class="st0" style="color: rgb(51, 102, 204);">"com.baidu.location.f"</span> android<span class="sy0" style="color: rgb(51, 153, 51);">:</span>enabled<span class="sy0" style="color: rgb(51, 153, 51);">=</span><span class="st0" style="color: rgb(51, 102, 204);">"true"</span> android<span class="sy0" style="color: rgb(51, 153, 51);">:</span>process<span class="sy0" style="color: rgb(51, 153, 51);">=</span><span class="st0" style="color: rgb(51, 102, 204);">":remote"</span><span class="sy0" style="color: rgb(51, 153, 51);">></span>
<span class="sy0" style="color: rgb(51, 153, 51);"></</span>service<span class="sy0" style="color: rgb(51, 153, 51);">></span>

然后就是加入定位所需要的权限

注意自己去除和地图权限相同的权限

<span class="sy0" style="color: rgb(51, 153, 51);"><!--</span> 这个权限用于进行网络定位<span class="sy0" style="color: rgb(51, 153, 51);">--></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission android<span class="sy0" style="color: rgb(51, 153, 51);">:</span>name<span class="sy0" style="color: rgb(51, 153, 51);">=</span><span class="st0" style="color: rgb(0, 0, 255);">"android.permission.ACCESS_COARSE_LOCATION"</span><span class="sy0" style="color: rgb(51, 153, 51);">></</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission<span class="sy0" style="color: rgb(51, 153, 51);">></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><!--</span> 这个权限用于访问GPS定位<span class="sy0" style="color: rgb(51, 153, 51);">--></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission android<span class="sy0" style="color: rgb(51, 153, 51);">:</span>name<span class="sy0" style="color: rgb(51, 153, 51);">=</span><span class="st0" style="color: rgb(0, 0, 255);">"android.permission.ACCESS_FINE_LOCATION"</span><span class="sy0" style="color: rgb(51, 153, 51);">></</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission<span class="sy0" style="color: rgb(51, 153, 51);">></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><!--</span> 用于访问wifi网络信息,wifi信息会用于进行网络定位<span class="sy0" style="color: rgb(51, 153, 51);">--></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission android<span class="sy0" style="color: rgb(51, 153, 51);">:</span>name<span class="sy0" style="color: rgb(51, 153, 51);">=</span><span class="st0" style="color: rgb(0, 0, 255);">"android.permission.ACCESS_WIFI_STATE"</span><span class="sy0" style="color: rgb(51, 153, 51);">></</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission<span class="sy0" style="color: rgb(51, 153, 51);">></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><!--</span> 获取运营商信息,用于支持提供运营商信息相关的接口<span class="sy0" style="color: rgb(51, 153, 51);">--></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission android<span class="sy0" style="color: rgb(51, 153, 51);">:</span>name<span class="sy0" style="color: rgb(51, 153, 51);">=</span><span class="st0" style="color: rgb(0, 0, 255);">"android.permission.ACCESS_NETWORK_STATE"</span><span class="sy0" style="color: rgb(51, 153, 51);">></</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission<span class="sy0" style="color: rgb(51, 153, 51);">></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><!--</span> 这个权限用于获取wifi的获取权限,wifi信息会用来进行网络定位<span class="sy0" style="color: rgb(51, 153, 51);">--></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission android<span class="sy0" style="color: rgb(51, 153, 51);">:</span>name<span class="sy0" style="color: rgb(51, 153, 51);">=</span><span class="st0" style="color: rgb(0, 0, 255);">"android.permission.CHANGE_WIFI_STATE"</span><span class="sy0" style="color: rgb(51, 153, 51);">></</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission<span class="sy0" style="color: rgb(51, 153, 51);">></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><!--</span> 用于读取手机当前的状态<span class="sy0" style="color: rgb(51, 153, 51);">--></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission android<span class="sy0" style="color: rgb(51, 153, 51);">:</span>name<span class="sy0" style="color: rgb(51, 153, 51);">=</span><span class="st0" style="color: rgb(0, 0, 255);">"android.permission.READ_PHONE_STATE"</span><span class="sy0" style="color: rgb(51, 153, 51);">></</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission<span class="sy0" style="color: rgb(51, 153, 51);">></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><!--</span> 写入扩展存储,向扩展卡写入数据,用于写入离线定位数据<span class="sy0" style="color: rgb(51, 153, 51);">--></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission android<span class="sy0" style="color: rgb(51, 153, 51);">:</span>name<span class="sy0" style="color: rgb(51, 153, 51);">=</span><span class="st0" style="color: rgb(0, 0, 255);">"android.permission.WRITE_EXTERNAL_STORAGE"</span><span class="sy0" style="color: rgb(51, 153, 51);">></</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission<span class="sy0" style="color: rgb(51, 153, 51);">></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><!--</span> 访问网络,网络定位需要上网<span class="sy0" style="color: rgb(51, 153, 51);">--></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission android<span class="sy0" style="color: rgb(51, 153, 51);">:</span>name<span class="sy0" style="color: rgb(51, 153, 51);">=</span><span class="st0" style="color: rgb(0, 0, 255);">"android.permission.INTERNET"</span> <span class="sy0" style="color: rgb(51, 153, 51);">/></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><!--</span> SD卡读取权限,用户写入离线定位数据<span class="sy0" style="color: rgb(51, 153, 51);">--></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission android<span class="sy0" style="color: rgb(51, 153, 51);">:</span>name<span class="sy0" style="color: rgb(51, 153, 51);">=</span><span class="st0" style="color: rgb(0, 0, 255);">"android.permission.MOUNT_UNMOUNT_FILESYSTEMS"</span><span class="sy0" style="color: rgb(51, 153, 51);">></</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission<span class="sy0" style="color: rgb(51, 153, 51);">></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><!--</span>允许应用读取低级别的系统日志文件 <span class="sy0" style="color: rgb(51, 153, 51);">--></span>
<span class="sy0" style="color: rgb(51, 153, 51);"><</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission android<span class="sy0" style="color: rgb(51, 153, 51);">:</span>name<span class="sy0" style="color: rgb(51, 153, 51);">=</span><span class="st0" style="color: rgb(0, 0, 255);">"android.permission.READ_LOGS"</span><span class="sy0" style="color: rgb(51, 153, 51);">></</span>uses<span class="sy0" style="color: rgb(51, 153, 51);">-</span>permission<span class="sy0" style="color: rgb(51, 153, 51);">></span>


依然是 key文件,地图和定位使用同一个key文件

在清单文件的的APPlication节点下配置

<span class="sy0" style="color: rgb(51, 153, 51);"><</span>meta<span class="sy0" style="color: rgb(51, 153, 51);">-</span>data
            android<span class="sy0" style="color: rgb(51, 153, 51);">:</span><span class="kw3" style="color: rgb(0, 0, 102);">name</span><span class="sy0" style="color: rgb(51, 153, 51);">=</span><span class="st0" style="color: rgb(51, 102, 204);">"com.baidu.lbsapi.API_KEY"</span>
            android<span class="sy0" style="color: rgb(51, 153, 51);">:</span>value<span class="sy0" style="color: rgb(51, 153, 51);">=</span><span class="st0" style="color: rgb(51, 102, 204);">"key"</span> <span class="sy0" style="color: rgb(51, 153, 51);">/></span>  


涉及地图相关的知识,不再赘述


  1. // 获取地图控件引用  
  2.   mMapView = (MapView) findViewById(R.id.bmapView);  
  3.   
  4.   map = mMapView.getMap();  
  5.   // 设置开启定位自己的位置  
  6.   map.setMyLocationEnabled(true);  
  7.   
  8.   // 设置定位点图标,可以使用系统的也可以自定义  
  9.   
  10.   mCurrentMarker = BitmapDescriptorFactory.fromResource(R.drawable.icon_geo);  
  11.   // 如果使用系统的让mCurrentMarker为空即可  
  12.   map.setMyLocationConfigeration(new MyLocationConfiguration(LocationMode.NORMAL, true, mCurrentMarker));  

基本的定位操作

  1. client = new LocationClient(getApplicationContext()); // 声明LocationClient类  
  2.     listener = Mylisetener;  
  3.     // 注册监听  
  4.     client.registerLocationListener(listener);  
  5.   
  6.     LocationClientOption option = new LocationClientOption();  
  7.     option.setCoorType("bd09ll");// 返回的定位结果是百度经纬度,默认值gcj02  
  8.     option.setScanSpan(5000);// 设置发起定位请求的间隔时间为5000ms  
  9.     option.setOpenGps(true);// 打开gps  
  10.     // option.setIsNeedAddress(true);// 返回的定位结果包含地址信息  
  11.     // option.setNeedDeviceDirect(true);// 返回的定位结果包含手机机头的方向  
  12.     client.setLocOption(option);  


具体实现代码


  1. package com.flyou.hellomap;  
  2.   
  3. import android.app.Activity;  
  4. import android.os.Bundle;  
  5.   
  6. import com.baidu.location.BDLocation;  
  7. import com.baidu.location.BDLocationListener;  
  8. import com.baidu.location.LocationClient;  
  9. import com.baidu.location.LocationClientOption;  
  10. import com.baidu.mapapi.SDKInitializer;  
  11. import com.baidu.mapapi.map.BaiduMap;  
  12. import com.baidu.mapapi.map.BaiduMapOptions;  
  13. import com.baidu.mapapi.map.BitmapDescriptor;  
  14. import com.baidu.mapapi.map.BitmapDescriptorFactory;  
  15. import com.baidu.mapapi.map.MapStatus;  
  16. import com.baidu.mapapi.map.MapStatus.Builder;  
  17. import com.baidu.mapapi.map.MapStatusUpdate;  
  18. import com.baidu.mapapi.map.MapStatusUpdateFactory;  
  19. import com.baidu.mapapi.map.MapView;  
  20. import com.baidu.mapapi.map.MyLocationConfiguration;  
  21. import com.baidu.mapapi.map.MyLocationConfiguration.LocationMode;  
  22. import com.baidu.mapapi.map.MyLocationData;  
  23. import com.baidu.mapapi.model.LatLng;  
  24. import com.baidu.platform.comapi.map.s;  
  25.   
  26. public class LocationMapActivity extends Activity {  
  27.   private LocationClient client;  
  28.   private BDLocationListener listener;  
  29.   MapView mMapView = null;  
  30.   BitmapDescriptor mCurrentMarker;  
  31.   private boolean isFirstLoc = true;  
  32.   
  33.   @Override  
  34.   protected void onCreate(Bundle savedInstanceState) {  
  35.     super.onCreate(savedInstanceState);  
  36.     // 在使用SDK各组件之前初始化context信息,传入ApplicationContext  
  37.     // 注意该方法要再setContentView方法之前实现  
  38.     SDKInitializer.initialize(getApplicationContext());  
  39.   
  40.     setContentView(R.layout.activity_main);  
  41.     // 获取地图控件引用  
  42.     mMapView = (MapView) findViewById(R.id.bmapView);  
  43.   
  44.     map = mMapView.getMap();  
  45.     // 设置开启定位自己的位置  
  46.     map.setMyLocationEnabled(true);  
  47.   
  48.     // 设置定位点图标,可以使用系统的也可以自定义  
  49.   
  50.     mCurrentMarker = BitmapDescriptorFactory.fromResource(R.drawable.icon_geo);  
  51.     // 如果使用系统的让mCurrentMarker为空即可  
  52.     map.setMyLocationConfigeration(new MyLocationConfiguration(LocationMode.NORMAL, true, mCurrentMarker));  
  53.     location();  
  54.   }  
  55.   
  56.   private void location() {  
  57.     client = new LocationClient(getApplicationContext()); // 声明LocationClient类  
  58.     listener = Mylisetener;  
  59.     // 注册监听  
  60.     client.registerLocationListener(listener);  
  61.   
  62.     LocationClientOption option = new LocationClientOption();  
  63.     option.setCoorType("bd09ll");// 返回的定位结果是百度经纬度,默认值gcj02  
  64.     option.setScanSpan(5000);// 设置发起定位请求的间隔时间为5000ms  
  65.     option.setOpenGps(true);// 打开gps  
  66.     // option.setIsNeedAddress(true);// 返回的定位结果包含地址信息  
  67.     // option.setNeedDeviceDirect(true);// 返回的定位结果包含手机机头的方向  
  68.     client.setLocOption(option);  
  69.   }  
  70.   
  71.   @Override  
  72.   protected void onDestroy() {  
  73.     super.onDestroy();  
  74.     // 在activity执行onDestroy时执行mMapView.onDestroy(),实现地图生命周期管理  
  75.     mMapView.onDestroy();  
  76.     // map.setMyLocationEnabled(false);  
  77.   }  
  78.   
  79.   @Override  
  80.   protected void onResume() {  
  81.     super.onResume();  
  82.     location();  
  83.     // 在activity执行onResume时执行mMapView. onResume (),实现地图生命周期管理  
  84.     mMapView.onResume();  
  85.   
  86.     client.start();  
  87.   
  88.   }  
  89.   
  90.   @Override  
  91.   protected void onPause() {  
  92.     super.onPause();  
  93.     // 在activity执行onPause时执行mMapView. onPause (),实现地图生命周期管理  
  94.     mMapView.onPause();  
  95.   
  96.     client.stop();  
  97.   }  
  98.   
  99.   BDLocationListener Mylisetener = new BDLocationListener() {  
  100.   
  101.     @Override  
  102.     public void onReceiveLocation(BDLocation location) {  
  103.       // map view 销毁后不在处理新接收的位置  
  104.       if (location == null || mMapView == null)  
  105.         return;  
  106.       MyLocationData locData = new MyLocationData.Builder().accuracy(location.getRadius())  
  107.       // 此处设置开发者获取到的方向信息,顺时针0-360  
  108.           .direction(100).latitude(location.getLatitude()).longitude(location.getLongitude()).build();  
  109.       map.setMyLocationData(locData);  
  110.       if (isFirstLoc) {  
  111.         isFirstLoc = false;  
  112.         LatLng ll = new LatLng(location.getLatitude(), location.getLongitude());  
  113.         // 缩放的范围是3-20  
  114.         MapStatusUpdate u = MapStatusUpdateFactory.newLatLngZoom(ll, 17f);  
  115.   
  116.         map.animateMapStatus(u);  
  117.   
  118.       }  
  119.     }  
  120.   
  121.   };  
  122.   private BaiduMap map;  
  123. }  

百度地图开发之获取定位地点

标签:百度地图   定位 sdk   android   

原文地址:http://blog.csdn.net/u010687392/article/details/45478865

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!