本文整理汇总了Java中com.baidu.mapapi.search.sug.OnGetSuggestionResultListener类的典型用法代码示例。如果您正苦于以下问题:Java OnGetSuggestionResultListener类的具体用法?Java OnGetSuggestionResultListener怎么用?Java OnGetSuggestionResultListener使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
OnGetSuggestionResultListener类属于com.baidu.mapapi.search.sug包,在下文中一共展示了OnGetSuggestionResultListener类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initMapView
import com.baidu.mapapi.search.sug.OnGetSuggestionResultListener; //导入依赖的package包/类
/**
* 初始化地图控件
*/
public void initMapView() {
mMapLayout = (RelativeLayout)findViewById(R.id.routePlan_mapLayout);
mMapLayout.setVisibility(View.GONE);
mMapFragment = ((MapFragment) (getSupportFragmentManager()
.findFragmentById(R.id.routePlan_mapview)));
mMapView = mMapFragment.getMapView();
mBaiduMap = mMapFragment.getBaiduMap();
//DeoSearch
mGeoSearch = GeoCoder.newInstance();
mGeoSearch.setOnGetGeoCodeResultListener(this);
//Map click handler
mBaiduMap.setOnMapClickListener(this);
//RoutePlanSearch
mSearch = RoutePlanSearch.newInstance();
mSearch.setOnGetRoutePlanResultListener(this);
//location
mBaiduMap.setMyLocationEnabled(true);
mLocClient = new LocationClient(this);
mLocClient.registerLocationListener(myListener);
LocationClientOption option = new LocationClientOption();
option.setLocationMode(LocationClientOption.LocationMode.Hight_Accuracy);
option.setIsNeedAddress(true);
option.setOpenGps(true);
option.setCoorType("bd09ll");
option.setScanSpan(1000);
option.setAddrType("all");
mLocClient.setLocOption(option);
mLocClient.start();
//SuggestSearch
mSuggestionSearch = SuggestionSearch.newInstance();
OnGetSuggestionResultListener listener = new OnGetSuggestionResultListener() {
public void onGetSuggestionResult(SuggestionResult res) {
if (res == null || res.getAllSuggestions() == null) {
return;
}
suggestPosAdapter.clear();
for (SuggestionResult.SuggestionInfo info : res.getAllSuggestions()) {
if (info.key != null)
suggestPosAdapter.add(info.district+info.key);
}
suggestPosAdapter.notifyDataSetChanged();
}
};
mSuggestionSearch.setOnGetSuggestionResultListener(listener);
}