1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /*
- * BMKSuggestionSearch.h
- * BMapKit
- *
- * Copyright 2014 Baidu Inc. All rights reserved.
- *
- */
- #import "BMKSuggestionSearchOption.h"
- #import <BaiduMapAPI_Base/BMKTypes.h>
- #import "BMKSearchBase.h"
- ///Suggestion结果类
- @interface BMKSuggestionResult : BMKSearchBase
- {
- NSArray* _keyList;
- NSArray* _cityList;
- NSArray* _districtList;
- }
- ///key列表,成员是NSString
- @property (nonatomic, strong) NSArray* keyList;
- ///city列表,成员是NSString
- @property (nonatomic, strong) NSArray* cityList;
- ///district列表,成员是NSString
- @property (nonatomic, strong) NSArray* districtList;
- ///poiId列表,成员是NSString
- @property (nonatomic, strong) NSArray* poiIdList;
- ///pt列表,成员是:封装成NSValue的CLLocationCoordinate2D
- @property (nonatomic, strong) NSArray* ptList;
- @end
- @protocol BMKSuggestionSearchDelegate;
- ///sug搜索服务
- @interface BMKSuggestionSearch : BMKSearchBase
- /// 检索模块的Delegate,此处记得不用的时候需要置nil,否则影响内存的释放
- @property (nonatomic, weak) id<BMKSuggestionSearchDelegate> delegate;
- /**
- *搜索建议检索
- *@param suggestionSearchOption sug检索信息类
- *异步函数,返回结果在BMKSuggestionSearchDelegate的onGetSuggestionResult通知
- *@return 成功返回YES,否则返回NO
- */
- - (BOOL)suggestionSearch:(BMKSuggestionSearchOption*)suggestionSearchOption;
- @end
- ///搜索delegate,用于获取搜索结果
- @protocol BMKSuggestionSearchDelegate<NSObject>
- @optional
- /**
- *返回suggestion搜索结果
- *@param searcher 搜索对象
- *@param result 搜索结果
- *@param error 错误号,@see BMKSearchErrorCode
- */
- - (void)onGetSuggestionResult:(BMKSuggestionSearch*)searcher result:(BMKSuggestionResult*)result errorCode:(BMKSearchErrorCode)error;
- @end
|