Androidはリスト付き地図POI周辺検索機能を実現

9057 ワード

まず効果図を見ます:(会社の近くの国貿を中心に)
上は地図、下は地理位置リスト、あるのは地理位置リスト(QQダイナミックな位置)だけで、これはよくある機能です.POI周辺検索という専門的な呼び方があります.
実装:
この効果は実际には简単ですが、まず地図のAPIを読む必要があります.ここでは高徳地図のAndroid SDKを使用しています.SDKの配置はここでは说明しません.文末にはいくつかのリンクを置いて勉强します.
考え方:
1、地図の位置決め機能を利用して、ユーザの現在の位置を取得する2、取得した位置情報に基づいてPOI検索を呼び出し、位置リスト3、ListView展示位置リスト4、ユーザが地図をドラッグして、地図中心座標の位置情報を取得し、2~3のステップを実行する
コード:
Layout:



  

  



Activity:

public class New_LocalActivity extends Activity implements LocationSource,
    AMapLocationListener, AMap.OnCameraChangeListener, PoiSearch.OnPoiSearchListener {

  @BindView(R.id.map_local)
  MapView mapView;
  @BindView(R.id.map_list)
  ListView mapList;

  public static final String KEY_LAT = "lat";
  public static final String KEY_LNG = "lng";
  public static final String KEY_DES = "des";


  private AMapLocationClient mLocationClient;
  private LocationSource.OnLocationChangedListener mListener;
  private LatLng latlng;
  private String city;
  private AMap aMap;
  private String deepType = "";// poi    
  private PoiSearch.Query query;// Poi     
  private PoiSearch poiSearch;
  private PoiResult poiResult; // poi     
  private PoiOverlay poiOverlay;// poi  
  private List poiItems;// poi  

  private PoiSearch_adapter adapter;


  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_new__local);
    ButterKnife.bind(this);
    mapView.onCreate(savedInstanceState);
    init();
  }

  private void init() {
    if (aMap == null) {
      aMap = mapView.getMap();
      aMap.setOnCameraChangeListener(this);
      setUpMap();
    }

    deepType = "  ";//       
  }

  //--------    Start ------

  private void setUpMap() {
    if (mLocationClient == null) {
      mLocationClient = new AMapLocationClient(getApplicationContext());
      AMapLocationClientOption mLocationOption = new AMapLocationClientOption();
      //      
      mLocationClient.setLocationListener(this);
      //          
      mLocationOption.setOnceLocation(true);
      mLocationOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy);
      //      
      mLocationClient.setLocationOption(mLocationOption);
      mLocationClient.startLocation();
    }
    //           
    MyLocationStyle myLocationStyle = new MyLocationStyle();
    myLocationStyle.myLocationIcon(BitmapDescriptorFactory
        .fromResource(R.drawable.location_marker));//         
    myLocationStyle.strokeColor(Color.BLACK);//          
    myLocationStyle.radiusFillColor(Color.argb(100, 0, 0, 180));//          
    myLocationStyle.strokeWidth(1.0f);//          
    aMap.setMyLocationStyle(myLocationStyle);
    aMap.setLocationSource(this);//       
    aMap.getUiSettings().setMyLocationButtonEnabled(true);//             
    aMap.setMyLocationEnabled(true);//    true             ,false              ,   false
  }

  /**
   *     poi  
   */
  protected void doSearchQuery() {
    aMap.setOnMapClickListener(null);//   poi            
    int currentPage = 0;
    query = new PoiSearch.Query("", deepType, city);//             ,       poi    ,       poi    (        )
    query.setPageSize(20);//            poiitem
    query.setPageNum(currentPage);//       
    LatLonPoint lp = new LatLonPoint(latlng.latitude, latlng.longitude);

    poiSearch = new PoiSearch(this, query);
    poiSearch.setOnPoiSearchListener(this);
    poiSearch.setBound(new PoiSearch.SearchBound(lp, 5000, true));
    //         lp    ,   2000   
    poiSearch.searchPOIAsyn();//     

  }

  @Override
  public void onLocationChanged(AMapLocation aMapLocation) {
    if (mListener != null && aMapLocation != null) {
      if (aMapLocation.getErrorCode() == 0) {
        //       
        mListener.onLocationChanged(aMapLocation);
        //         
        latlng = new LatLng(aMapLocation.getLatitude(), aMapLocation.getLongitude());
        aMap.animateCamera(CameraUpdateFactory.newLatLngZoom(latlng, 14), 1000, null);
        city = aMapLocation.getProvince();
        doSearchQuery();
      } else {
        String errText = "    ," + aMapLocation.getErrorCode() + ": " + aMapLocation.getErrorInfo();
        Log.e("AmapErr", errText);
      }
    }
  }

  @Override
  public void activate(OnLocationChangedListener listener) {
    mListener = listener;
    mLocationClient.startLocation();
  }

  @Override
  public void deactivate() {
    mListener = null;
    if (mLocationClient != null) {
      mLocationClient.stopLocation();
      mLocationClient.onDestroy();
    }
    mLocationClient = null;
  }

  @Override
  public void onCameraChange(CameraPosition cameraPosition) {
  }

  @Override
  public void onCameraChangeFinish(CameraPosition cameraPosition) {
    latlng = cameraPosition.target;
    aMap.clear();
    aMap.addMarker(new MarkerOptions().position(latlng));
    doSearchQuery();
  }

  @Override
  public void onPoiSearched(PoiResult result, int rCode) {
    if (rCode == 0) {
      if (result != null && result.getQuery() != null) {//   poi   
        if (result.getQuery().equals(query)) {//       
          poiResult = result;
          poiItems = poiResult.getPois();//       poiitem  ,     0  
          List suggestionCities = poiResult
              .getSearchSuggestionCitys();
          if (poiItems != null && poiItems.size() > 0) {
            adapter = new PoiSearch_adapter(this, poiItems);
            mapList.setAdapter(adapter);
            mapList.setOnItemClickListener(new mOnItemClickListener());

           }
          }
          else {
            Logger.d("   ");
          }
        }
      } else {
        Logger.e("   ");
      }
    } else if (rCode == 27) {
      Logger.e("error_network");
    } else if (rCode == 32) {
      Logger.e("error_key");
    } else {
      Logger.e("error_other:" + rCode);
    }
  }

  @Override
  public void onPoiItemSearched(PoiItem poiItem, int i) {

  }

  //--------    End ------

  @Override
  protected void onResume() {
    super.onResume();
    mLocationClient.startLocation();
  }

  @Override
  protected void onPause() {
    super.onPause();
    mLocationClient.stopLocation();
  }

  @Override
  protected void onDestroy() {
    mLocationClient.onDestroy();
    super.onDestroy();
  }

  private class mOnItemClickListener implements AdapterView.OnItemClickListener {
    @Override
    public void onItemClick(AdapterView> parent, View view, int position, long id) {
      Intent intent = new Intent();
      intent.putExtra(KEY_LAT, poiItems.get(position).getLatLonPoint().getLatitude());
      intent.putExtra(KEY_LNG, poiItems.get(position).getLatLonPoint().getLongitude());
      intent.putExtra(KEY_DES, poiItems.get(position).getTitle());
      setResult(RESULT_OK, intent);
      finish();
    }
  }

例のActivityはstartActivity ForResult方式で起動し、最後に位置をクリックするとポイント選択の位置情報が返されます.
まとめ:私は初めて上述の効果を実現する準備をした時、戸惑って、まだ地図APIに対して比較的に全面的な認識があるため、それから多くの資料を見て、自分で地図の機能点を結びつけて、設計図の中の効果を実現しました.
本文の作者:彼は自分のMR張と言います
本住所:http://blog.csdn.net/ys743276112/article/details/51519223
以上は本文のすべての内容で、作者の分かち合いに感謝して、みんなの学習に対して役に立つことを望んで、みんなは共に進歩します.