1搜索服务
百度地图SDK集成搜索服务包括:位置检索、周边检索、范围检索、公交检索、驾乘检索、步行检索,通过初始化MKSearch类,注册搜索结果的监听对象MKSearchListener,实现异步搜索服务。首先自定义MySearchListener实现MKSearchListener接口,通过不同的回调方法,获得搜索结果:
- public class MySearchListener implements MKSearchListener {
- @Override
- public void onGetAddrResult(MKAddrInfo result, int iError) {
-
- }
- @Override
- public void onGetDrivingRouteResult(MKDrivingRouteResult result, int iError) {
-
- }
- @Override
- public void onGetPoiResult(MKPoiResult result, int type, int iError) {
-
- }
- @Override
- public void onGetTransitRouteResult(MKTransitRouteResult result, int iError) {
-
- }
- @Override
- public void onGetWalkingRouteResult(MKWalkingRouteResult result, int iError) {
-
- }
- @Override
- public void onGetBusDetailResult(MKBusLineResult result, int iError) {
-
- }
- @Override
- public void onGetSuggestionResult(MKSuggestionResult result, intiError) {
-
- }
- }
在MyMapActivity中添加成员变量:
- MKSearch mMKSearch = null;
然后在onCreate()中初始化:
- mMKSearch = new MKSearch();
- mMKSearch.init(mBMapMan, new MySearchListener());
2兴趣点(poi)搜索
2.1 范围检索
指在给定的一个矩形区域内,根据开发者设定的指定关键字,搜索兴趣点信息,所使用的方法为:poiSearchInbounds(String key, GeoPoint ptLB, GeoPoint ptRT);核心代码如下:
如要检索北京西站与北京北站为顶点所确定的距形区域内的KFC餐厅,使用以下代码发起检索:
-
- GeoPoint ptLB = new GeoPoint( (int)(39.901375 * 1E6),(int)(116.329099 * 1E6));
-
- GeoPoint ptRT = new GeoPoint( (int)(39.949404 * 1E6),(int)(116.360719 * 1E6));
- mMKSearch.poiSearchInbounds("KFC", ptLB, ptRT);
Tips:想知道某个兴趣点的百度地图坐标吗?
请移步百度地图坐标拾取系统http://api.map.baidu.com/lbsapi/getpoint/index.html
2.2 城市检索
城市检索,即在某一城市内搜索兴趣点信息。所使用的方法是:poiSearchInCity(String city, String key);核心代码如下:
如要检索北京的KFC餐厅,使用以下代码发起检索:
- mMKSearch.poiSearchInCity("北京", "KFC");
2.3 周边检索
周边检索指的是以指定坐标点为圆心,根据给定关键字查询一定半径范围内的全部兴趣点。使用方法:poiSearchNearBy(String key, GeoPoint pt, int radius);核心代码如下:
检索天安门周边5000米之内的KFC餐厅:
- mMKSearch.poiSearchNearBy("KFC", new GeoPoint((int) (39.915 * 1E6), (int) (116.404 * 1E6)), 5000);
2.4 展示搜索结果
实现MySearchListener的onGetPoiResult,并展示检索结果:
- @Override
- public void onGetPoiResult(MKPoiResult res, int type, int error) {
-
- if ( error == MKEvent.ERROR_RESULT_NOT_FOUND){
- Toast.makeText(MyMapActivity.this, "抱歉,未找到结果",Toast.LENGTH_LONG).show();
- return ;
- }
- else if (error != 0 || res == null) {
- Toast.makeText(MyMapActivity.this, "搜索出错啦..", Toast.LENGTH_LONG).show();
- return;
- }
-
- PoiOverlay poiOverlay = new PoiOverlay(MyMapActivity.this, mMapView);
- poiOverlay.setData(res.getAllPoi());
- mMapView.getOverlays().clear();
- mMapView.getOverlays().add(poiOverlay);
- mMapView.refresh();
-
- for(MKPoiInfo info : res.getAllPoi() ){
- if ( info.pt != null ){
- mMapView.getController().animateTo(info.pt);
- break;
- }
- }
- }
运行结果如下图所示:
3 地址信息查询
根据地理坐标查询地址信息:
- mMKSearch.reverseGeocode(new GeoPoint(40057031, 116307852));
- mMKSearch.geocode(key, city);
reverseGeocode返回结果在MKSearchListener里的onGetAddrResult方法,核心代码如下所示:
- public void onGetAddrResult(MKAddrInfo res, int error) {
- if (error != 0) {
- String str = String.format("错误号:%d", error);
- Toast.makeText(MyMapActivity.this, str, Toast.LENGTH_LONG).show();
- return;
- }
- mMapView.getController().animateTo(res.geoPt);
- String strInfo = String.format("纬度:%f 经度:%f\r\n", res.geoPt.getLatitudeE6()/1e6,res.geoPt.getLongitudeE6()/1e6);
- Toast.makeText(MyMapActivity.this, strInfo, Toast.LENGTH_LONG).show();
- }
geocode返回结果在MKSearchListener里的onGetPoiResult方法,核心代码如下:
- public void onGetPoiResult(MKPoiResult res, int type, int error) {
- if (error != 0 || res == null) {
- Toast.makeText(MyMapActivity.this, "解析失败", Toast.LENGTH_LONG).show();
- return;
- }
- if (res != null&&res.getCurrentNumPois() > 0) {
- GeoPointptGeo = res.getAllPoi().get(0).pt;
- mMapView.getController().animateTo(ptGeo);
- String strInfo = String.format("纬度:%f 经度:%f\r\n", ptGeo.getLatitudeE6()/1e6,ptGeo.getLongitudeE6()/1e6);
- strInfo += "\r\n附近有:";
- for (int i = 0; i <res.getAllPoi().size(); i++) {
- strInfo += (res.getAllPoi().get(i).name + ";");
- }
- Toast.makeText(MyMapActivity.this, strInfo, Toast.LENGTH_LONG).show();
- }
- }
4 在线建议查询
根据关键词查询在线建议词,具体使用的方法为:suggestionSearch(String key),参数key为关键字;获取查询结果的方法需要实现MKSearchListener接口中的onGetSuggestionResult方法,核心代码如下所示:
- ListView mSuggestionList = (ListView) findViewById(R.id.listView1);
- @Override
- public void onGetSuggestionResult(MKSuggestionResult res, int iError){
- if (iError!= 0 || res == null) {
- Toast.makeText(MyMapActivity.this, "抱歉,未找到结果", Toast.LENGTH_LONG).show();
- return;
- }
- int nSize = res.getSuggestionNum();
- String[] mStrSuggestions = new String[nSize];
- for (int i = 0; i <nSize; i++){
- mStrSuggestions[i] = res.getSuggestion(i).city + res.getSuggestion(i).key;
- }
- ArrayAdapter<String> suggestionString = new ArrayAdapter<String>(MyMapActivity.this, android.R.layout.simple_list_item_1,mStrSuggestions);
- mSuggestionList.setAdapter(suggestionString);
- }