百度地图SDK for Android【Demo兴趣点搜索】

百度地图SDK为开发者提供了便捷的检索服务。今天我将为大家介绍Poi检索相关的内容。

首先,我们要构建一个最基本的地图应用,具体介绍请参考:百度地图SDK for Android【Demo地图展示】

在这个工程的基础之上我们做一定的修改。

第一步,修改布局文件,添加关键字输入框和用于执行搜索操作的按钮。代码如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <!-- 放入百度地图的mapview -->
    <com.baidu.mapapi.map.MapView android:id="@+id/bmapsView"
		android:layout_width="fill_parent"
		android:layout_height="fill_parent"
		android:clickable="true"/>

    <!-- 用户输入关键字的文本框 -->
    <EditText
        android:id="@+id/editText1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_toLeftOf="@+id/button1"
        android:hint="请输入搜索关键字"
        android:ems="50" >
        <requestFocus />
    </EditText>

    <!-- 执行Poi搜索的按钮 -->
    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:text="《搜索Poi》" />

</RelativeLayout>

第二步,在主类中定义EditText和Button对象,并初始化。代码如下:

		// 初始化关键词输入框和按钮控件
		editText = (EditText) findViewById(R.id.editText1);
		button = (Button) findViewById(R.id.button1);

第三步,定义并初始化搜索监听对象(这里我们只对poi搜索做了监听,如果开发者在使用其他检索时,只需修改对应的监听方法即可)。代码如下:

	MKSearchListener mkSearchListener = new MKSearchListener() {
		
		@Override
		public void onGetWalkingRouteResult(MKWalkingRouteResult arg0, int arg1) {
			// TODO Auto-generated method stub
			
		}
		
		@Override
		public void onGetTransitRouteResult(MKTransitRouteResult arg0, int arg1) {
			// TODO Auto-generated method stub
			
		}
		
		@Override
		public void onGetSuggestionResult(MKSuggestionResult arg0, int arg1) {
			// TODO Auto-generated method stub
			
		}
		
		@Override
		public void onGetPoiResult(MKPoiResult arg0, int arg1, int arg2) {
			// TODO Auto-generated method stub
			// 首先判断是否搜索到结果
			if(arg2 != 0 || arg0 == null)
			{
				Toast.makeText(MainActivity.this, "没有找到结果!", Toast.LENGTH_SHORT).show();
				return;
			}
			// 将结果绘制到地图上
			if(arg0.getCurrentNumPois() > 0)
			{
				PoiOverlay poiOverlay = new PoiOverlay(MainActivity.this, mapView);
                poiOverlay.setData(arg0.getAllPoi());
                mapView.getOverlays().clear();
                mapView.getOverlays().add(poiOverlay);
                mapView.refresh();
                //当arg1为2(公交线路)或4(地铁线路)时, poi坐标为空
                for( MKPoiInfo info : arg0.getAllPoi() )
                {
                	if ( info.pt != null ){
                		mapView.getController().animateTo(info.pt);
                		break;
                	}
                }
			}
		}
		
		@Override
		public void onGetPoiDetailSearchResult(int arg0, int arg1) {
			// TODO Auto-generated method stub
			
		}
		
		@Override
		public void onGetDrivingRouteResult(MKDrivingRouteResult arg0, int arg1) {
			// TODO Auto-generated method stub
			
		}
		
		@Override
		public void onGetBusDetailResult(MKBusLineResult arg0, int arg1) {
			// TODO Auto-generated method stub
			
		}
		
		@Override
		public void onGetAddrResult(MKAddrInfo arg0, int arg1) {
			// TODO Auto-generated method stub
			
		}
	};

第四步,定义Poi检索对象并初始化。代码如下:

		// 初始化Poi搜索对象
		mkSearch = new MKSearch();
		mkSearch.init(bMapManager, mkSearchListener);

第五步,设置button的点击事件,实现Poi搜索。代码如下:

		button.setOnClickListener(new OnClickListener() {
			
			@Override
			public void onClick(View v) {
				// TODO Auto-generated method stub
				String key = editText.getText().toString();
				// 如果关键字为空则不进入搜索
				if(key.equals(""))
				{
					Toast.makeText(MainActivity.this, "请输入搜索关键词!", Toast.LENGTH_SHORT).show();
				}
				else 
				{
					// 这里Poi搜索以城市内Poi检索为例,开发者可根据自己的实际需求,灵活使用
					mkSearch.poiSearchInCity("北京", key);
				}
			}
		});

第六步,完成!结果如下图所示:

注意:本示例只给出了最基本的核心代码,需要查看全部代码的开发者请下载原工程文件

此外,这个简单的例子旨在说明Poi的最基本使用方法及执行逻辑,百度地图SDK为开发者提供了丰富的检索服务,您可以实现城市检索、周边检索、范围检索等等。

更多精彩请持续关注本博客及百度地图SDK官方网站


更多详细信息请登录百度地图API官方网站:http://developer.baidu.com/map/
百度地图API论坛:http://bbs.lbsyun.baidu.com/


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值