近由于项目需要,研究了下百度地图定位,他们提供的实例基本都是用监听器实现自动定位的。我想实现一种效果:当用户进入UI时,不定位,用户需要定位的时候,自己手动点击按钮,再去定位当前位置。  经过2天研究和咨询,找到了解决方案,在此备忘一下。

注意:定位使用真机才能够真正定位;模拟器的话,在DDMS中的Emulator Control中,选择Manual,下面单选按钮选择Decimal,然后填写经纬度,send后,再点击定位我的位置按钮,就能定位了(这应该算是固定定位,哈哈。。。)、

1、第一步当然是获取一个针对自己项目的key值。http://dev.baidu.com/wiki/static/imap/key/

2、使用百度API是有前提的,摘自百度:首先将API包括的两个文件baidumapapi.jar和 libBMapApiEngine.so拷贝到工程根目录及libs\armeabi目录下,并在工程属性->Java Build Path->Libraries中选择“Add JARs”,选定baidumapapi.jar,确定后返回,这样您就可以在您的程序中使用API了。(这两个文件见附件)。

3、按照自己的需求写一个layout,我的如下:

<?xml version="1.0" encoding="utf-8"?>

Xml代码

  1. <LinearLayout

  2. xmlns:android="http://schemas.android.com/apk/res/android"

  3. android:orientation="vertical"

  4. android:layout_width="fill_parent"

  5. android:layout_height="fill_parent"

  6. >

  7. <TextView

  8. android:id="@+id/myLocation_id"

  9. android:layout_width="fill_parent"

  10. android:layout_height="wrap_content"

  11. android:textSize="15dp"

  12. android:gravity="center_horizontal"

  13. android:textColor="@drawable/black"

  14. android:background="@drawable/gary"

  15. />

  16. <com.baidu.mapapi.MapView android:id="@+id/bmapsView"

  17. android:layout_width="fill_parent" android:layout_height="fill_parent"

  18. android:clickable="true"  android:layout_weight="1"

  19. />

  20. <Button

  21. android:layout_width="wrap_content"

  22. android:layout_height="wrap_content"

  23. android:id="@+id/location_button_id"

  24. android:text="@string/location_button_text"

  25. />

  26. </LinearLayout>

需要特别注意的是:<com.baidu.mapapi.MapView  /> 这玩意。

4、写一个MapApplication实现application,提供全局的BMapManager,以及其初始化。

Java代码

  1. public BMapManager mapManager = null;

  2. static MapApplication app;

  3. public String mStrKey = "你申请的key值";

  4. @Override

  5. public void onCreate() {

  6. mapManager = new BMapManager(this);

  7. mapManager.init(mStrKey, new MyGeneralListener());

  8. }

  9. @Override

  10. //建议在您app的退出之前调用mapadpi的destroy()函数,避免重复初始化带来的时间消耗

  11. public void onTerminate() {

  12. // TODO Auto-generated method stub

  13. if(mapManager != null)

  14. {

  15. mapManager.destroy();

  16. mapManager = null;

  17. }

  18. super.onTerminate();

  19. }

  20. static class MyGeneralListener implements MKGeneralListener{

  21. @Override

  22. public void onGetNetworkState(int arg0) {

  23. Toast.makeText(MapApplication.app.getApplicationContext(), "您的网络出错啦!",

  24. Toast.LENGTH_LONG).show();

  25. }

  26. @Override

  27. public void onGetPermissionState(int iError) {

  28. if (iError ==  MKEvent.ERROR_PERMISSION_DENIED) {

  29. // 授权Key错误:

  30. Toast.makeText(MapApplication.app.getApplicationContext(),"您的授权Key不正确!",

  31. Toast.LENGTH_LONG).show();

  32. }

  33. }

  34. }

  35. 5、接下来就是按照百度api写定位代码了,使用handler机制去添加定位图层,需要说明的都在注释上了。

  36. private BMapManager mBMapMan = null;

  37. private MapView mMapView = null;

  38. private MapController bMapController;

  39. private MKLocationManager mkLocationManager;

  40. private MKSearch mkSearch;

  41. private TextView address_view;   //定位到的位置信息

  42. private ProgressDialog dialog;

  43. private List<HotelInfo> hotelList;

  44. private int distance = 1000;  //查询的范围(单位:m)

  45. Handler handler = new Handler(){

  46. @Override

  47. public void handleMessage(Message msg) {

  48. double lat = msg.getData().getDouble("lat");

  49. double lon = msg.getData().getDouble("lon");

  50. if(lat!=0&&lon!=0){

  51. GeoPoint point = new GeoPoint(

  52. (int) (lat * 1E6),

  53. (int) (lon * 1E6));

  54. bMapController.animateTo(point);  //设置地图中心点

  55. bMapController.setZoom(15);

  56. mkSearch.reverseGeocode(point);   //解析地址(异步方法)

  57. MyLocationOverlay myLoc = new MyLocationOverlayFromMap(ShowMapAct.this,mMapView);

  58. myLoc.enableMyLocation();   // 启用定位

  59. myLoc.enableCompass();      // 启用指南针

  60. mMapView.getOverlays().add(myLoc);

  61. }else{

  62. Toast.makeText(ShowMapAct.this, "没有加载到您的位置", Toast.LENGTH_LONG).show();

  63. }

  64. if(hotelList!=null){

  65. Drawable marker = getResources().getDrawable(R.drawable.iconmarka);  //设置marker

  66. marker.setBounds(0, 0, marker.getIntrinsicWidth(), marker.getIntrinsicHeight());   //为maker定义位置和边界

  67. mMapView.getOverlays().add(new OverItemList(marker,hotelList,ShowMapAct.this,bMapController));

  68. }else if(hotelList==null&&lat!=0&&lon!=0){

  69. Toast.makeText(ShowMapAct.this, "网络异常,没有获取到酒店信息。", Toast.LENGTH_LONG).show();

  70. }

  71. if(dialog!=null)  dialog.dismiss();

  72. }

  73. };

  74. @Override

  75. protected void onCreate(Bundle savedInstanceState) {

  76. distance = getIntent().getExtras().getInt("distance");   //获取查询范围

  77. super.onCreate(savedInstanceState);

  78. setContentView(R.layout.location);

  79. mMapView = (MapView)findViewById(R.id.bmapsView);   //初始化一个mapView  存放Map

  80. init();  //初始化地图管理器

  81. super.initMapActivity(mBMapMan);

  82. address_view = (TextView)findViewById(R.id.myLocation_id);

  83. SpannableStringBuilder style = new SpannableStringBuilder(String.format(getResources().getString(R.string.location_text),"位置不详"));

  84. style.setSpan(new ForegroundColorSpan(Color.RED), 5, style.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

  85. address_view.setText(style);

  86. Button location_button = (Button)findViewById(R.id.location_button_id);

  87. location_button.setOnClickListener(new View.OnClickListener(){

  88. @Override

  89. public void onClick(View v) {

  90. dialog = ProgressDialog.show(ShowMapAct.this, "", "数据加载中,请稍后.....");

  91. new Thread(new MyThread()).start();

  92. }

  93. });

  94. mkSearch = new MKSearch();   //初始化一个MKSearch,根据location解析详细地址

  95. mkSearch.init(mBMapMan, this);

  96. mMapView.setBuiltInZoomControls(true);   //启用内置的缩放控件

  97. bMapController = mMapView.getController();

  98. GeoPoint defaultPoint = new GeoPoint((int) (39.920934 * 1E6),(int) (116.412817 * 1E6));  //用给定的经纬度构造一个GeoPoint,单位是微度 (度 * 1E6)

  99. bMapController.setCenter(defaultPoint);  //设置地图中心点

  100. bMapController.setZoom(12);  //设置地图zoom级别

  101. mkLocationManager = mBMapMan.getLocationManager();

  102. }

  103. /**

  104. * 初始化地图管理器BMapManager

  105. */

  106. public void init(){

  107. MapApplication app = (MapApplication)getApplication();

  108. if (app.mapManager == null) {

  109. app.mapManager = new BMapManager(getApplication());

  110. app.mapManager.init(app.mStrKey, new MapApplication.MyGeneralListener());

  111. }

  112. mBMapMan = app.mapManager;

  113. }

  114. @Override

  115. protected void onDestroy() {

  116. MapApplication app = (MapApplication)getApplication();

  117. if (mBMapMan != null) {

  118. mBMapMan.destroy();

  119. app.mapManager.destroy();

  120. app.mapManager = null;

  121. mBMapMan = null;

  122. }

  123. super.onDestroy();

  124. }

  125. @Override

  126. protected void onPause() {

  127. if (mBMapMan != null) {

  128. // 终止百度地图API

  129. mBMapMan.stop();

  130. }

  131. super.onPause();

  132. }

  133. @Override

  134. protected void onResume() {

  135. if (mBMapMan != null) {

  136. // 开启百度地图API

  137. mBMapMan.start();

  138. }

  139. super.onResume();

  140. }

  141. @Override

  142. protected boolean isRouteDisplayed() {

  143. return false;

  144. }

  145. @Override

  146. public void onGetAddrResult(MKAddrInfo result, int iError) {

  147. if(result==null) return;

  148. SpannableStringBuilder style = new SpannableStringBuilder(String.format(getResources().getString(R.string.location_text),result.strAddr));

  149. style.setSpan(new ForegroundColorSpan(Color.RED), 5, style.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

  150. address_view.setText(style);

  151. if(dialog!=null) dialog.dismiss();

  152. }

  153. @Override

  154. public void onGetDrivingRouteResult(MKDrivingRouteResult arg0, int arg1) {}

  155. @Override

  156. public void onGetPoiResult(MKPoiResult arg0, int arg1, int arg2) {}

  157. @Override

  158. public void onGetTransitRouteResult(MKTransitRouteResult arg0, int arg1) {}

  159. @Override

  160. public void onGetWalkingRouteResult(MKWalkingRouteResult arg0, int arg1) {}

  161. /**

  162. * 重新定位,加载数据

  163. * @author Administrator

  164. *

  165. */

  166. class MyThread implements Runnable{

  167. @Override

  168. public void run() {

  169. /**

  170. * 最重要的就是这个玩意

  171. * 由于LocationListener获取第一个位置修正的时间会很长,为了避免用户等待,

  172. * 在LocationListener获取第一个更精确的位置之前,应当使用getLocationInfo() 获取一个缓存的位置

  173. */

  174. Location location = mkLocationManager.getLocationInfo();

  175. double lat = 0d,lon = 0d;

  176. if(location!=null){   //定位到位置

  177. String coordinate = location.getLatitude()+","+location.getLongitude();

  178. HotelRemoteData hotelData = new HotelRemoteData();

  179. /**

  180. * 远程获取酒店列表数据

  181. */

  182. hotelList = hotelData.getHotelToMap(coordinate,distance);

  183. lat = location.getLatitude();

  184. lon = location.getLongitude();

  185. }

  186. Message msg = new Message();

  187. Bundle data = new Bundle();

  188. data.putDouble("lat", lat);

  189. data.putDouble("lon", lon);

  190. msg.setData(data);

  191. handler.sendMessage(msg);

  192. }

  193. }

6、还有一种就是百度示例相当推荐的,也是加载定位位置速度比较快的,那就是通过定位监听器来定位信息。没啥难的,照着百度的示例写,都能搞定。

Java代码

  1. LocationListener listener = new LocationListener() {

  2. @Override

  3. /** 位置变化,百度地图即会调用该方法去获取位置信息。

  4. * (我测试发现就算手机不动,它也会偶尔重新去加载位置;只要你通过重力感应,他就一定会重新加载)

  5. */

  6. public void onLocationChanged(Location location) {

  7. GeoPoint gp =  new GeoPoint((int) (location.getLatitude() * 1E6), (int) (location.getLongitude() * 1E6));   //通过地图上的经纬度转换为地图上的坐标点

  8. bMapController.animateTo(gp);  //动画般的移动到定位的位置

  9. }

  10. };

Android 百度地图定位(手动+自动) 安卓开发教程的更多相关文章

  1. android 百度地图定位功能实现

    历经几天时间,终于把定位功能给实现了,可谓是费劲千辛万苦啊,有定位知识还有图层知识,在这里我把代码给大家贴出来,一起分享一下下啦. package com.example.foreveross.off ...

  2. 我的Android进阶之旅------>Android百度地图定位SDK功能学习

    因为项目需求,需要使用百度地图的定位功能,因此去百度地图开发平台下载了百度地图的Android定位SDK最新版本的开发包和示例代码学习. Android 定位SDK地址:http://develope ...

  3. Android百度地图定位

    在谈到百度地图.如今,每个人都知道这个时候应该可以了吧.而更多的字不拉.直接朝话题. 访问百度地图api您必须应用key,应用在这里key不用说,有官方的文件说明如何应用上述key. 在这里,百度地图 ...

  4. android 百度地图定位开发2

    先下载了示例代码 进行配置(可查看开发 指南 Hello BaiDuMap) 第一步:创建并配置工程(具体方法参见工程配置部分的介绍): 第二步:在AndroidManifest中添加开发密钥.所需权 ...

  5. android 百度地图定位开发1

    首先注册成为百度开发者 然后进入百度开发者中心 点击LBS 跳到下一个页面 点击Android 开发 里面的基础地图 进入  点击获取密钥 进入   点击创建应用 进入     应用名称自己填 应用类 ...

  6. android百度地图定位开发

    一.activity import android.app.Activity; import android.graphics.Point;import android.graphics.PointF ...

  7. android 百度地图 定位功能

    废话不多说 直接新建一个新android项目:location,然后花一分钟申请一个key,然后就是把百度定位demo抄一下即可 1:首先在AndroidManifest.xml中加入权限 <u ...

  8. android 百度地图 定位获取位置失败 62错误

    一切正常步骤进行但是还是没有获得定位,得到的坐标总是49E.xxxx,错误代码总是62 总是以为代码.或jar包.或还有什么权限没给.搞了好久,十分郁闷.在控制台上又没有什么具体的错误提示 经过无数次 ...

  9. 050 Android 百度地图的使用

    1.初始化地图 //初始化地图 private void initMapView() { //1.获取地图控件引用 mMapView = findViewById(R.id.bmapView); mB ...

随机推荐

  1. This version of MySQL doesn’t yet support ‘LIMIT & IN/ALL/ANY/SOME 错误解决

    在一个Mysql表达式中使用嵌套查询,出现了这个错误.原因是内层select语句带有limit子句.   在网上查了下,有文章指出: 比如这样的语句是不能正确执行的. select * from ta ...

  2. Linker scripts之MEMORY

    1 MEMORY command The MEMORY command describes the location and size of blocks of memory in the targe ...

  3. WS之cxf处理的复杂类型(Map)

    一.服务端: 1.创建接口: package cn.tdtk.ws.dao; import java.util.List;import java.util.Map; import javax.jws. ...

  4. Nagle算法,tcp小包组合(延迟)发送的算法

    在j2ee中可能会引起业务的延迟,java自行决定是否需要使用 Socket.TCP_NODELAY 选项来禁用 nagle 策略算法.c语言的语法是: setsockopt( sock, IPPRO ...

  5. 第二百一十九天 how can I 坚持

    今天好冷,白天在家待了一天,晚上,老贾生日,生日快乐,去海底捞吃了个火锅,没感觉呢. 今天还发现了个好游戏,纪念碑谷,挺新颖,就是难度有点大了. 好累.睡觉,明天想去爬山啊,可是该死的天气.

  6. html5 +css3 第一章学习和笔记

    各位同学.身为本版的斑竹.,希望各位童鞋都能学到Html5 .特此没两天更新一个学习笔记和大家一起学习Html5.... 语法改变       1.新增的元素和废除的元素       2.新增的属性和 ...

  7. Options for Debugging Your Program or GCC

    [Options for Debugging Your Program or GCC] -g Produce debugging information in the operating system ...

  8. POJ 1696 Space Ant(极角排序)

    Space Ant Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 2489   Accepted: 1567 Descrip ...

  9. mac多版本python安装 pymysql

    系统里面安装了多个python的版本,有2.7和3.4等.默认的2.7版本,但我开发需要3.4版本的. 默认情况下,用pip安装PyMySQL $sudo pip install PyMySQL 安装 ...

  10. c语言typedef的用法-解惑阿!很多天书般的东西解释的不错(转)

    转自(http://www.cnblogs.com/wchhuangya/archive/2009/12/25/1632160.html) 一.基本概念剖析 int* (*a[5])(int, cha ...