From 3e8437ae559487362fae3525beb79c534c213a51 Mon Sep 17 00:00:00 2001
From: 单军华
Date: Thu, 12 Jul 2018 13:44:34 +0800
Subject: [PATCH] bug修复和功能优化

---
 screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Search.framework/Headers/BMKSuggestionSearch.h |   70 +++++++++++++++++++++++++++++++++++
 1 files changed, 70 insertions(+), 0 deletions(-)

diff --git a/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Search.framework/Headers/BMKSuggestionSearch.h b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Search.framework/Headers/BMKSuggestionSearch.h
new file mode 100644
index 0000000..6f3c886
--- /dev/null
+++ b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Search.framework/Headers/BMKSuggestionSearch.h
@@ -0,0 +1,70 @@
+/*
+ *  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;
+//tag������������������NSString
+@property (nonatomic, copy) NSArray *tagList;
+//address��������� ���������NSString
+@property (nonatomic, copy) NSArray *addressList;
+
+
+@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
+
+
+
+

--
Gitblit v1.8.0