天天看点

百度定位SDK实现获取当前经纬度及位置

使用Android自带的LocationManager和Location获取位置的时候,经常会有获取的location为null的情况,并且操作起来也不是很方便,在这个Demo里我使用了百度地图API中的定位SDK,可以一次性获取当前位置经纬度以及详细地址信息,还可以获取周边POI信息,同时可以设定位置通知点,当到达某一位置时,发出通知信息等方式来告知用户。jar包下载以及官方文档请参照:百度定位SDK,前提是需要注册百度开发者账号。

下面来看看定位的基本原理,目前,定位SDK可以通过GPS、基站、Wifi信号进行定位。基本定位流程如下图所示,当应用程序向定位SDK发起定位请求时,定位SDK会根据当前的GPS、基站、Wifi信息生成相对应的定位依据。然后定位SDK会根据定位依据来进行定位。如果需要,定位SDK会向定位服务器发送网络请求。定位服务器会根据请求的定位依据推算出对应的坐标位置,然后根据用户的定制信息,生成定位结果返回给定位SDK。

百度定位SDK实现获取当前经纬度及位置

到官方下载jar文件后添加到工程,工程目录截图如下:

百度定位SDK实现获取当前经纬度及位置

注意要把locSDK_2.4.jar添加到当天工程,右键jar文件-Build path-Add to。。。

上代码

布局文件:

[html] view plaincopy

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.     <Button  
  7.         android:id="@+id/btn_start"  
  8.         android:layout_width="fill_parent"  
  9.         android:layout_height="wrap_content"   
  10.         android:layout_marginTop="20dp"  
  11.         android:text="Start"/>  
  12.     <TextView  
  13.         android:id="@+id/tv_loc_info"  
  14.         android:layout_width="fill_parent"  
  15.         android:layout_height="wrap_content"  
  16.         android:textSize="18sp" />  
  17. </LinearLayout>  

配置文件:

[html] view plaincopy

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     package="com.ericssonlabs"  
  4.     android:versionCode="1"  
  5.     android:versionName="1.0" >  
  6.     <uses-sdk android:minSdkVersion="8" />  
  7.     <uses-permission android:name="android.permission.BAIDU_LOCATION_SERVICE" >  
  8.     </uses-permission>  
  9.     <uses-permission android:name="android.permission.BAIDU_LOCATION_SERVICE" >  
  10.     </uses-permission>  
  11.     <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" >  
  12.     </uses-permission>  
  13.     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" >  
  14.     </uses-permission>  
  15.     <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" >  
  16.     </uses-permission>  
  17.     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" >  
  18.     </uses-permission>  
  19.     <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" >  
  20.     </uses-permission>  
  21.     <uses-permission android:name="android.permission.READ_PHONE_STATE" >  
  22.     </uses-permission>  
  23.     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" >  
  24.     </uses-permission>  
  25.     <uses-permission android:name="android.permission.INTERNET" />  
  26.     <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" >  
  27.     </uses-permission>  
  28.     <uses-permission android:name="android.permission.READ_LOGS" >  
  29.     </uses-permission>  
  30.     <application  
  31.         android:icon="@drawable/ic_launcher"  
  32.         android:label="@string/app_name" >  
  33.         <activity  
  34.             android:name=".LocationDemoActivity"  
  35.             android:label="@string/app_name" >  
  36.             <intent-filter>  
  37.                 <action android:name="android.intent.action.MAIN" />  
  38.                 <category android:name="android.intent.category.LAUNCHER" />  
  39.             </intent-filter>  
  40.         </activity>  
  41.         <service  
  42.             android:name="com.baidu.location.f"  
  43.             android:enabled="true"  
  44.             android:permission="android.permission.BAIDU_LOCATION_SERVICE"  
  45.             android:process=":remote" >  
  46.             <intent-filter>  
  47.                 <action android:name="com.baidu.location.service_v2.4" />  
  48.             </intent-filter>  
  49.         </service>  
  50.     </application>  
  51. </manifest>  

实现代码:

[java] view plaincopy

  1. public class LocationDemoActivity extends Activity {  
  2.     private TextView locationInfoTextView = null;  
  3.     private Button startButton = null;  
  4.     private LocationClient locationClient = null;  
  5.     private static final int UPDATE_TIME = 5000;  
  6.     private static int LOCATION_COUTNS = 0;  
  7.     @Override  
  8.     public void onCreate(Bundle savedInstanceState) {  
  9.         super.onCreate(savedInstanceState);  
  10.         setContentView(R.layout.main);  
  11.         locationInfoTextView = (TextView) this.findViewById(R.id.tv_loc_info);  
  12.         startButton = (Button) this.findViewById(R.id.btn_start);  
  13.         locationClient = new LocationClient(this);  
  14.         //设置定位条件  
  15.         LocationClientOption option = new LocationClientOption();  
  16.         option.setOpenGps(true);                                //是否打开GPS  
  17.         option.setCoorType("bd09ll");                           //设置返回值的坐标类型。  
  18.         option.setPriority(LocationClientOption.NetWorkFirst);  //设置定位优先级  
  19.         option.setProdName("LocationDemo");                     //设置产品线名称。强烈建议您使用自定义的产品线名称,方便我们以后为您提供更高效准确的定位服务。  
  20.         option.setScanSpan(UPDATE_TIME);                        //设置定时定位的时间间隔。单位毫秒  
  21.         locationClient.setLocOption(option);  
  22.         //注册位置监听器  
  23.         locationClient.registerLocationListener(new BDLocationListener() {  
  24.             @Override  
  25.             public void onReceiveLocation(BDLocation location) {  
  26.                 // TODO Auto-generated method stub  
  27.                 if (location == null) {  
  28.                     return;  
  29.                 }  
  30.                 StringBuffer sb = new StringBuffer(256);  
  31.                 sb.append("Time : ");  
  32.                 sb.append(location.getTime());  
  33.                 sb.append("\nError code : ");  
  34.                 sb.append(location.getLocType());  
  35.                 sb.append("\nLatitude : ");  
  36.                 sb.append(location.getLatitude());  
  37.                 sb.append("\nLontitude : ");  
  38.                 sb.append(location.getLongitude());  
  39.                 sb.append("\nRadius : ");  
  40.                 sb.append(location.getRadius());  
  41.                 if (location.getLocType() == BDLocation.TypeGpsLocation){  
  42.                     sb.append("\nSpeed : ");  
  43.                     sb.append(location.getSpeed());  
  44.                     sb.append("\nSatellite : ");  
  45.                     sb.append(location.getSatelliteNumber());  
  46.                 } else if (location.getLocType() == BDLocation.TypeNetWorkLocation){  
  47.                     sb.append("\nAddress : ");  
  48.                     sb.append(location.getAddrStr());  
  49.                 }  
  50.                 LOCATION_COUTNS ++;  
  51.                 sb.append("\n检查位置更新次数:");  
  52.                 sb.append(String.valueOf(LOCATION_COUTNS));  
  53.                 locationInfoTextView.setText(sb.toString());  
  54.             }  
  55.             @Override  
  56.             public void onReceivePoi(BDLocation location) {  
  57.             }  
  58.         });  
  59.         startButton.setOnClickListener(new OnClickListener() {  
  60.             @Override  
  61.             public void onClick(View v) {  
  62.                 if (locationClient == null) {  
  63.                     return;  
  64.                 }  
  65.                 if (locationClient.isStarted()) {  
  66.                     startButton.setText("Start");  
  67.                     locationClient.stop();  
  68.                 }else {  
  69.                     startButton.setText("Stop");  
  70.                     locationClient.start();  
  71.                     locationClient.requestLocation();  
  72.                 }  
  73.             }  
  74.         });  
  75.     }  
  76.     @Override  
  77.     protected void onDestroy() {  
  78.         super.onDestroy();  
  79.         if (locationClient != null && locationClient.isStarted()) {  
  80.             locationClient.stop();  
  81.             locationClient = null;  
  82.         }  
  83.     }  
  84. }  

来看看最后实现效果,点击Start后进入位置监听状态,根据设置的监听时间间隔进行定位,如果位置有变化则进行位置更新,同时显示了检测位置更新的次数,如果开启了GPS,则获取到卫星后,进行GPS定位:

百度定位SDK实现获取当前经纬度及位置

设置位置提醒的功能我这里就没实现了,感兴趣的可以参考开发指南

加入我们的QQ群或微信公众账号请查看:Ryan's zone公众账号及QQ群

欢迎关注我的新浪微博和我交流:@唐韧_Ryan

原文地址:点击打开链接