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/BMKDistrictSearch.h | 74 +++++++++++++++++++++++++++++++++++++ 1 files changed, 74 insertions(+), 0 deletions(-) diff --git a/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Search.framework/Headers/BMKDistrictSearch.h b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Search.framework/Headers/BMKDistrictSearch.h new file mode 100644 index 0000000..f92d0dd --- /dev/null +++ b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Search.framework/Headers/BMKDistrictSearch.h @@ -0,0 +1,74 @@ +// +// BMKDistrictSearch.h +// SearchComponent +// +// Created by wzy on 15/12/14. +// Copyright �� 2015��� baidu. All rights reserved. +// + +#ifndef BMKDistrictSearch_h +#define BMKDistrictSearch_h +#import <BaiduMapAPI_Base/BMKTypes.h> +#import "BMKSearchBase.h" + +/// ������������������������ +@interface BMKDistrictSearchOption : NSObject + +/// ������������������������ +@property (nonatomic, strong) NSString *city; +/// ������������������������ +@property (nonatomic, strong) NSString *district; + +@end + +#pragma mark - + +/// ������������������������ +@interface BMKDistrictResult : NSObject + +/// ������������������ +@property (nonatomic, assign) NSInteger code; +/// ������������������ +@property (nonatomic, strong) NSString *name; +/// ��������������������� +@property (nonatomic, assign) CLLocationCoordinate2D center; +/// ������������������������������������������(NSString���������������������������������: @"x,y;x,y") +@property (nonatomic, strong) NSArray *paths; + +@end + +#pragma mark - + +@protocol BMKDistrictSearchDelegate; + +/// ������������������������ +@interface BMKDistrictSearch : BMKSearchBase +/// ���������������delegate���������������������������������������nil������������������������������ +@property (nonatomic, weak) id<BMKDistrictSearchDelegate> delegate; + +/** + *������������������ + *������������������������������BMKDistrictSearchDelegate���onGetDistrictResult������ + *@param districtSearchOption ��������������������������� + *@return ������������YES���������������NO + */ +- (BOOL)districtSearch:(BMKDistrictSearchOption*)districtSearchOption; + +@end + +#pragma mark - + +///������delegate��������������������������������������� +@protocol BMKDistrictSearchDelegate<NSObject> +@optional +/** + *������������������������������ + *@param searcher ������������ + *@param result ���������BMKDistrictSearch��� + *@param error ������������@see BMKSearchErrorCode + */ +- (void)onGetDistrictResult:(BMKDistrictSearch *)searcher result:(BMKDistrictResult *)result errorCode:(BMKSearchErrorCode)error; + +@end + +#endif /* BMKDistrictSearch_h */ -- Gitblit v1.8.0