当前位置:操作系统 > 安卓/Android >>

Android SDK for 百度地图

百度地图SDK为开发者提供了便捷的检索服务。今天我将为大家介绍Poi检索相关的内容。
        首先,我们要构建一个最基本的地图应用,具体介绍请参考:Android sdk
        在这个工程的基础之上我们做一定的修改。
        第一步,修改布局文件,添加关键字输入框和用于执行搜索操作的按钮。代码如下:
      <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
    publi

补充:移动开发 , Android ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,