基于Android实现百度地图定位过程详解

 更新时间:2015年11月12日 11:25:05   投稿:mrr  
这篇文章主要介绍了基于Android实现百度地图定位过程详解,需要的朋友可以参考下

一、问题描述

LBS位置服务是android应用中重要的功能,应用越来越广泛,下面我们逐步学习和实现lbs相关的应用如定位、地图、导航等,首先我们看如何基于百度地图实现定位功能

二、配置环境

1、注册密钥:地址http://developer.baidu.com/map/

2、下载定位SDK,并导入SDK如图所示:

 

三、编写MyApplication类

编写MyApplication类,为了使用方便我们可以将实现定位的方法封装的Application组件中

封装下列方法

1、  获取定位信息——requestLocationInfo()

2、  通过广播发送位置信息——sendBroadCast()

3、  停止定位——stopLocationClient()

public class MyApplication extends Application{
  public LocationClient mLocationClient = null;
  public GeofenceClient mGeofenceClient;
  public MyLocationListenner myListener = new MyLocationListenner();
  public static String TAG = "MyApplication";
  private static MyApplication mInstance = null;
  @Override
  public void onCreate(){
    mInstance = this;
    mLocationClient = new LocationClient(this);
    /**
     * 项目的key,自己到官网申请 http://lbsyun.baidu.com/apiconsole/key
     */
    mLocationClient.setAK("你的应用Key");
    mLocationClient.registerLocationListener(myListener);
    mGeofenceClient = new GeofenceClient(this);
    super.onCreate();
    Log.d(TAG, "... Application onCreate... pid=" + Process.myPid());
  }
  public static MyApplication getInstance(){
    return mInstance;
  }
  /**
   * 停止定位
   */
  public void stopLocationClient(){
    if (mLocationClient != null && mLocationClient.isStarted()){
      mLocationClient.stop();
    } 
  }
  /**
   * 发起定位
   */
  public void requestLocationInfo(){
    setLocationOption();
    if (mLocationClient != null && !mLocationClient.isStarted()){
      mLocationClient.start();
    }
    if (mLocationClient != null && mLocationClient.isStarted()){
      mLocationClient.requestLocation();
    } 
  }
  /**
   * 设置百度地图的相关参数
   */
  private void setLocationOption(){
    LocationClientOption option = new LocationClientOption();
    option.setOpenGps(true); // 打开gps
    option.setCoorType("bd09ll"); // 设置坐标类型
    option.setServiceName("com.baidu.location.service_v2.9");
    option.setPoiExtraInfo(true);
    option.setAddrType("all");
    option.setPoiNumber(10);
    option.disableCache(true);
    mLocationClient.setLocOption(option);
  }
  /**
   * 监听函数,有更新位置的时候,格式化成字符串,输出到屏幕中
   */
  public class MyLocationListenner implements BDLocationListener
  {
    @Override
    public void onReceiveLocation(BDLocation location){
      if (location == null){
        sendBroadCast("定位失败!");
        return;
      }
      sendBroadCast(location.getAddrStr());
    }
    public void onReceivePoi(BDLocation poiLocation){
      if (poiLocation == null){
        sendBroadCast("定位失败!");
        return;
      }
      sendBroadCast(poiLocation.getAddrStr());
    }
  }
  /**
   * 得到发送广播
   * @param address
   */
  public void sendBroadCast(String address){
        stopLocationClient();
    Intent intent = new Intent(MainActivity.LOCATION_BCR);
    intent.putExtra("address", address);
    sendBroadcast(intent);
  }
}

三、 主程序MainActivity

public class MainActivity extends Activity{
  public static String TAG = "LocTestDemo";
  private BroadcastReceiver broadcastReceiver;
  public static String LOCATION_BCR = "location_bcr";
  private Button locBtn;
  private TextView locInfo;
  private MyApplication application;
  @Override
  protected void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    application=(MyApplication)super.getApplication();
    initialize();
    initializeViews();
    initializeListeners();
  }
  private void initialize(){
    registerBroadCastReceiver();//注册广播
  }
  private void initializeViews()
  {
    locBtn = (Button) findViewById(R.id.location);
    locInfo = (TextView) findViewById(R.id.location_info);
  }
  private void initializeListeners()
  {
    locBtn.setOnClickListener(new OnClickListener(){
      @Override
      public void onClick(View v){
        locInfo.setText("定位中...");
      //调用请求定位信息
      application.requestLocationInfo();
      }
    });
  }
  /**
   * 注册一个广播,监听定位结果,接受广播获得地址信息
   */
  private void registerBroadCastReceiver()
  {
    broadcastReceiver = new BroadcastReceiver(){
    public void onReceive(Context context, Intent intent){
      String address = intent.getStringExtra("address");
        locInfo.setText(address);
      }
    };
    IntentFilter intentToReceiveFilter = new IntentFilter();
    intentToReceiveFilter.addAction(LOCATION_BCR);
    registerReceiver(broadcastReceiver, intentToReceiveFilter);
  }
  @Override
  protected void onDestroy(){
    super.onDestroy();
    unregisterReceiver(broadcastReceiver);
  }
}

四、 AndroidManifest.xml配置信息

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.jereh.baidulocation"
  android:versionCode="1"
  android:versionName="1.0" >
  <uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />
  <application
    android:name="com.jereh.baidulocation.MyApplication"
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
      android:name="com.jereh.baidulocation.MainActivity"
      android:label="@string/app_name" >
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>
    <service
      android:name="com.baidu.location.f"
      android:enabled="true"
      android:process=":remote" >
      <intent-filter>
        <action android:name="com.baidu.location.service_v2.2" >
        </action>
      </intent-filter>
    </service>
  </application>
  <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" >
  </uses-permission>
  <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" >
  </uses-permission>
  <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" >
  </uses-permission>
  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" >
  </uses-permission>
  <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" />
  <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" >
  </uses-permission>
  <uses-permission android:name="android.permission.READ_LOGS" >
  </uses-permission>
  <uses-permission android:name="android.permission.VIBRATE" />
  <uses-permission android:name="android.permission.WAKE_LOCK" />
  <uses-permission android:name="android.permission.WRITE_SETTINGS" />
</manifest>

相关文章

  • Android Okhttp断点续传面试深入解析

    Android Okhttp断点续传面试深入解析

    这篇文章主要给大家介绍了关于Android Okhttp断点续传面试的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者使用Android具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧
    2019-06-06
  • 安装android开发环境原始版(windows版)

    安装android开发环境原始版(windows版)

    安装android开发环境原始版(windows版)的详细步骤
    2013-03-03
  • android 手机SD卡读写操作(以txt文本为例)实现步骤

    android 手机SD卡读写操作(以txt文本为例)实现步骤

    要完成SD卡读写操作首先对manifest注册SD卡读写权限其次是创建一个对SD卡中文件读写的类写一个用于检测读写功能的的布局然后就是UI的类了,感兴趣的朋友可以参考下,希望可以帮助到你
    2013-02-02
  • Android SharePreferences与数据库SQLite存储实现方法介绍

    Android SharePreferences与数据库SQLite存储实现方法介绍

    这篇文章主要介绍了Android SharePreferences与数据库SQLite用于存储的具体实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧
    2022-09-09
  • android 预加载进程的实现方法

    android 预加载进程的实现方法

    这篇文章主要介绍了android 预加载进程的实现方法,大家需要注意清单文件中注册并制定 android:process 要预加载的进程,需要的朋友可以参考下
    2024-05-05
  • Android listview ExpandableListView实现多选,单选,全选,edittext实现批量输入的实例代码

    Android listview ExpandableListView实现多选,单选,全选,edittext实现批量输入

    这篇文章主要介绍了Android listview ExpandableListView实现多选,单选,全选,edittext实现批量输入的实例代码,非常不错,具有参考借鉴价值,需要的朋友可以参考下
    2017-01-01
  • Android自定义View实现比赛时间闪动效果

    Android自定义View实现比赛时间闪动效果

    这篇文章主要为大家详细介绍了Android自定义View实现比赛时间闪动效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-03-03
  • Android读取资源文件的方法

    Android读取资源文件的方法

    这篇文章主要介绍了Android读取资源文件的方法的相关资料,这里提供两种方法及实例,需要的朋友可以参考下
    2017-08-08
  • Flutter的键值存储数据库使用示例详解

    Flutter的键值存储数据库使用示例详解

    这篇文章主要为大家介绍了Flutter的键值存储数据库使用示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-08-08
  • Android中关于定时任务实现关闭订单问题

    Android中关于定时任务实现关闭订单问题

    在电商、支付等领域,往往会有这样的场景,用户下单后放弃支付了,那这笔订单会在指定的时间段后进行关闭操作,细心的你一定发现了像某宝、某东都有这样的逻辑,而且时间很准确,误差在1s内;那他们是怎么实现的呢?今天通过本文学习定时任务实现关闭订单问题
    2022-05-05

最新评论