具体内容如下效果图:
1、布局文件,就是一个MapView和ListView,布局文件就是上面是一个百度地图的mapview,下面是一个显示周边位置的ListView
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
- <RelativeLayout
- android:id="@+id/plugin_camera_image_folder_headview"
- android:layout_width="fill_parent"
- android:layout_height="45dp"
- android:layout_marginBottom="3dp"
- android:background="#2B4058"
- android:gravity="center_vertical" >
- <TextView
- android:id="@+id/chat_publish_complete_cancle"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_centerVertical="true"
- android:layout_marginLeft="10dp"
- android:text="取消"
- android:textColor="#ffffff"
- android:textSize="16sp" />
- <TextView
- android:id="@+id/chat_publish_complete_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="选择当前位置"
- android:textColor="#ffffff"
- android:textSize="20sp" />
- <Button
- android:id="@+id/chat_publish_complete_publish"
- android:layout_width="55dp"
- android:layout_height="27dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="10dp"
- android:background="@drawable/chat_publish_bg"
- android:text="完成"
- android:textColor="#fff"
- android:textSize="16sp" />
- </RelativeLayout>
- <RelativeLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_weight="2" >
- <com.baidu.mapapi.map.MapView
- android:id="@+id/bmapView"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:clickable="true" />
- <Button
- android:id="@+id/request"
- android:layout_width="40dp"
- android:layout_height="40dp"
- android:layout_alignParentBottom="true"
- android:layout_alignParentLeft="true"
- android:layout_marginBottom="40dp"
- android:layout_marginLeft="10dp"
- android:background="@drawable/custom_loc" />
- </RelativeLayout>
- <ListView
- android:id="@+id/lv_location_nearby"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_weight="3" />
- </LinearLayout>
2、初始化控件
- <span style="white-space:pre"> </span>dataList = new ArrayList<PoiInfo>();
- mMapView = (MapView) findViewById(R.id.bmapView);
- mCompleteButton = (Button) findViewById(R.id.chat_publish_complete_publish);
- mRequestLocation = (Button) findViewById(R.id.request);
- mListView = (ListView) findViewById(R.id.lv_location_nearby);
- checkPosition=0;
- adapter = new ListAdapter(0);
- mListView.setAdapter(adapter);
3、 定位
- <span style="white-space:pre"> </span>//重新设置
- checkPosition = 0;
- adapter.setCheckposition(0);
- mBaiduMap = mMapView.getMap();
- mBaiduMap.clear();
- // 开启定位图层
- mBaiduMap.setMyLocationEnabled(true);
- mBaiduMap.setMapStatus(MapStatusUpdateFactory.newMapStatus(new MapStatus.Builder().zoom(17).build())); // 设置级别
- // 定位初始化
- mLocationClient = new LocationClient(getApplicationContext()); // 声明LocationClient类
- mLocationClient.registerLocationListener(myListener);// 注册定位监听接口
- /**
- * 设置定位参数
- */
- LocationClientOption option = new LocationClientOption();
- option.setLocationMode(LocationMode.Hight_Accuracy);// 设置定位模式
- // option.setScanSpan(5000);// 设置发起定位请求的间隔时间,ms
- option.setNeedDeviceDirect(true);// 设置返回结果包含手机的方向
- option.setOpenGps(true);
- option.setAddrType("all");// 返回的定位结果包含地址信息
- option.setCoorType("bd09ll");// 返回的定位结果是百度经纬度,默认值gcj02
- option.setIsNeedAddress(true);// 返回的定位结果包含地址信息
- mLocationClient.setLocOption(option);
- mLocationClient.start(); // 调用此方法开始定位
4、定位SDK监听函数
- public class MyLocationListener implements BDLocationListener {
- @Override
- public void onReceiveLocation(BDLocation location) {
- if (location == null || mMapView == null) {
- return;
- }
- locType = location.getLocType();
- Log.i("mybaidumap", "当前定位的返回值是:"+locType);
- longitude = location.getLongitude();
- latitude = location.getLatitude();
- if (location.hasRadius()) {// 判断是否有定位精度半径
- radius = location.getRadius();
- }
- if (locType == BDLocation.TypeNetWorkLocation) {
- addrStr = location.getAddrStr();// 获取反地理编码(文字描述的地址)
- Log.i("mybaidumap", "当前定位的地址是:"+addrStr);
- }
- direction = location.getDirection();// 获取手机方向,【0~360°】,手机上面正面朝北为0°
- province = location.getProvince();// 省份
- city = location.getCity();// 城市
- district = location.getDistrict();// 区县
- LatLng ll = new LatLng(location.getLatitude(),location.getLongitude());
- //将当前位置加入List里面
- PoiInfo info = new PoiInfo();
- info.address = location.getAddrStr();
- info.city = location.getCity();
- info.location = ll;
- info.name = location.getAddrStr();
- dataList.add(info);
- adapter.notifyDataSetChanged();
- Log.i("mybaidumap", "province是:"+province +" city是"+city +" 区县是: "+district);
- // 构造定位数据
- MyLocationData locData = new MyLocationData.Builder()
- .accuracy(location.getRadius())
- // 此处设置开发者获取到的方向信息,顺时针0-360
- .direction(100).latitude(location.getLatitude())
- .longitude(location.getLongitude()).build();
- mBaiduMap.setMyLocationData(locData);
- //画标志
- CoordinateConverter converter = new CoordinateConverter();
- converter.coord(ll);
- converter.from(CoordinateConverter.CoordType.COMMON);
- LatLng convertLatLng = converter.convert();
- OverlayOptions ooA = new MarkerOptions().position(ll).icon(BitmapDescriptorFactory.fromResource(R.drawable.icon_marka));
- mCurrentMarker = (Marker) mBaiduMap.addOverlay(ooA);
- MapStatusUpdate u = MapStatusUpdateFactory.newLatLngZoom(convertLatLng, 17.0f);
- mBaiduMap.animateMapStatus(u);
- //画当前定位标志
- MapStatusUpdate uc = MapStatusUpdateFactory.newLatLng(ll);
- mBaiduMap.animateMapStatus(uc);
- mMapView.showZoomControls(false);
- //poi 搜索周边
- new Thread(new Runnable() {
- @Override
- public void run() {
- // TODO Auto-generated method stub
- Looper.prepare();
- searchNeayBy();
- Looper.loop();
- }
- }).start();
- }
5、搜索周边:
- private void searchNeayBy(){
- // POI初始化搜索模块,注册搜索事件监听
- mPoiSearch = PoiSearch.newInstance();
- mPoiSearch.setOnGetPoiSearchResultListener(this);
- PoiNearbySearchOption poiNearbySearchOption = new PoiNearbySearchOption();
- poiNearbySearchOption.keyword("公司");
- poiNearbySearchOption.location(new LatLng(latitude, longitude));
- poiNearbySearchOption.radius(100); // 检索半径,单位是米
- poiNearbySearchOption.pageCapacity(20); // 默认每页10条
- mPoiSearch.searchNearby(poiNearbySearchOption); // 发起附近检索请求
- }
7、周边地理位置结果返回
- @Override
- public void onGetPoiResult(PoiResult result) {
- // 获取POI检索结果
- if (result == null || result.error == SearchResult.ERRORNO.RESULT_NOT_FOUND) {// 没有找到检索结果
- Toast.makeText(MainActivity.this, "未找到结果",Toast.LENGTH_LONG).show();
- return;
- }
- if (result.error == SearchResult.ERRORNO.NO_ERROR) {// 检索结果正常返回
- // mBaiduMap.clear();
- if(result != null){
- if(result.getAllPoi()!= null && result.getAllPoi().size()>0){
- dataList.addAll(result.getAllPoi());
- // adapter.notifyDataSetChanged();
- Message msg = new Message();
- msg.what = 0;
- handler.sendMessage(msg);
- }
- }
- }
- }
8、返回结果result.getAllPoi() 设到ListView的Adapter里面去,刷新控件即可。
9、源代码
相关推荐
通过以上步骤,我们可以在Android应用中实现百度地图定位、搜索周边位置并在列表中展示,以及让用户选择具体的位置。这个过程涵盖了地图API的集成、定位服务的使用、搜索功能的实现和UI交互等多个技术点,是移动开发...
7. **显示定位图标**:在地图上显示用户的位置,可以调用MapView的`setMyLocationEnabled(true)`方法开启定位图层。默认的定位图标可能不符合所有需求,通过自定义Overlay可以更改图标样式。 8. **处理定位异常**:...
百度地图作为国内主流的地图应用之一,提供了一系列强大的定位和服务功能,帮助用户准确找到自己的位置并获取周边信息。以下将详细讲解如何利用百度地图进行定位、查看周边信息以及如何拖拽地图进行交互。 1. **...
5. **显示定位标记**:在地图上显示用户的位置,可以通过创建MyLocationData对象并传递给MapView的setMyLocationData方法,或者使用MyLocationOverlay类。 6. **周边搜索POI**:百度地图API提供了搜索周围兴趣点的...
通过这个"Android 百度地图 定位Demo",开发者可以学习到如何在Android应用中集成百度地图,实现定位功能,为用户提供基于位置的服务。此外,还可以在此基础上扩展功能,如路线导航、地理围栏、兴趣点检索等。
在Android开发中,集成百度地图并实现定位打卡功能是一项常见的需求。这涉及到多个技术点,包括Android SDK的使用、百度地图API的集成、位置服务的开启与管理、地图的显示与交互、以及自定义打卡逻辑等。下面我们将...
本文将深入探讨如何在Android版百度地图中定位自己的位置,并切换卫星图和普通地图图层。 首先,要实现定位功能,我们需要集成百度地图SDK。这个SDK为开发者提供了API接口,用于获取用户的位置信息。集成过程包括在...
在地图上显示位置列表,我们需要调用百度地图的逆地理编码服务,将经纬度转换为具体地址,再通过搜索接口获取附近的兴趣点。以下是一个简单的示例: ```java PoiSearch poiSearch = new PoiSearch(mapView....
在Android开发中,百度地图API是一个非常常用的工具,它提供了丰富的地图展示、定位、路径规划等功能,极大地便利了开发者在构建地理位置相关应用时的工作。"老罗android 百度地图开发源码"是一个示例项目,它展示了...
在实际应用中,可以将这些信息展示在地图上,或者在列表中供用户选择。 4. **源码实践**:在提供的压缩包中,"Search"文件可能是实现搜索功能的相关代码,可能包含请求POI数据、解析返回结果、在地图上标记POI等...
返回的结果会包含一系列PoiItem对象,每个对象包含了地点的名称、地址、坐标等信息,可以展示在地图上或者列表中。 在集成百度地图时,开发者还需要设置API密钥(AK),这是验证应用身份的关键。创建AK需要在百度...
在Android开发中,集成百度地图API是一个常见的需求,主要用于实现位置定位、路线规划、地图展示等功能。本项目“Android百度地图demo”是一个示例工程,它利用了百度官方提供的SDK,帮助开发者快速理解和掌握如何在...
而定位功能则涉及实时获取用户的位置信息,百度地图提供了内置的定位SDK,可以轻松地在地图上显示用户的位置图标,并监听位置更新。 此外,**POI(Point of Interest,兴趣点)检索**让应用能够搜索地图上的特定...
3. 地图展示与操作:源码中还会涉及到如何在Android应用中初始化并显示百度地图,以及如何添加自定义的Marker、InfoWindow等地图元素。同时,可能包括地图的缩放、平移、旋转等交互操作的实现。 4. 路径规划:百度...
通过输入关键字或坐标,可以获取到餐馆、酒店等POI(Point of Interest)信息,并在地图上展示。 **驾驶导航**是更高级的功能,它涉及到路径规划和导航指引。百度地图API提供了 DrivingRouteRequest 类,用于设置...
在Android开发中,百度地图API是一个非常重要的工具,它提供了丰富的功能,如定位、地图展示、路线规划等。本文将详细讲解如何利用百度地图API在Android应用中实现定位及周边搜索POI(Point of Interest)的功能。 ...
百度地图API是百度提供的一套用于地图展示、定位、路线规划等功能的开发接口,支持Android和iOS等多个平台。开发者通过调用这些接口,可以在自己的应用中实现与地图相关的功能。 **定位服务** 在Android应用中,...
在Android开发中,集成百度地图API 3.0是一个常见的需求,这主要涉及到地图显示、定位、以及用户交互等功能。本文将深入探讨如何在应用中实现"中心点位置选择"的功能,即允许用户通过拖动地图来改变地图的中心位置。...
在Android开发中,使用百度地图API来实现运动轨迹和GPS定位是一项常见的功能。这个实训项目主要涉及以下几个核心知识点: 1. **百度地图API**:首先,你需要集成百度地图SDK到你的Android项目中。这通常包括在项目...