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) {
//返回poi搜索结果
}
@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());//注意,MKSearchListener只支持一个,以最后一次设置为准
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) {
// 错误号可参考MKEvent中的定义
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;
}
// 将poi结果显示到地图上
PoiOverlay poiOverlay = new PoiOverlay(MyMapActivity.this, mMapView);
poiOverlay.setData(res.getAllPoi());
mMapView.getOverlays().clear();
mMapView.getOverlays().add(poiOverlay);
mMapView.refresh();
//当ePoiType为2(公交线路)或4(地铁线路)时, poi坐标为空
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);
}
更多详细信息请登录百度地图API官方网站:http://developer.baidu.com/map/百度地图API论坛:http://bbs.lbsyun.baidu.com/