From 83b9d5c682b21d88133f24da0f94dd56bd79e687 Mon Sep 17 00:00:00 2001 From: 单军华 Date: Thu, 19 Jul 2018 13:38:55 +0800 Subject: [PATCH] change --- screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Cloud.framework/Headers/BMKCloudSearchInfo.h | 113 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 113 insertions(+), 0 deletions(-) diff --git a/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Cloud.framework/Headers/BMKCloudSearchInfo.h b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Cloud.framework/Headers/BMKCloudSearchInfo.h new file mode 100644 index 0000000..a74dafe --- /dev/null +++ b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Cloud.framework/Headers/BMKCloudSearchInfo.h @@ -0,0 +1,113 @@ +/* + * BMKCloudSearchInfo.h + * BMapKit + * + * Copyright 2013 Baidu Inc. All rights reserved. + * + */ +#import <Foundation/Foundation.h> +#import <CoreLocation/CoreLocation.h> + +/// ��������������������������������������������������������� +@interface BMKBaseCloudSearchInfo : NSObject +{ + NSString *_ak; + NSString *_sn; + int _geoTableId; +} +///access_key���������������������������50 +@property (nonatomic, strong) NSString *ak; +///���������������������������������������������������50 +@property (nonatomic, strong) NSString *sn; +///geo table ��������������������� +@property (nonatomic, assign) int geoTableId; + +@end + +/// ������,������,������������������������������ +@interface BMKCloudSearchInfo : BMKBaseCloudSearchInfo { + NSString *_keyword; + NSString *_tags; + NSString *_sortby; + NSString *_filter; + NSInteger _pageIndex; + NSInteger _pageSize; + +} +///���������������,���������������45��������� +@property (nonatomic, strong) NSString *keyword; +///������������������������������������������������������45��������������������������� ������ +@property (nonatomic, strong) NSString *tags; +/** + * ������������������������ sortby={keyname}:1 ���������sortby={keyname}:-1 ��������� + * ������keyname������������������������ + * 1.distance ������������ + * 2.weight ������������ + * ������������weight������ + * ������������������������������������������������ + * ������������������������������������������sortby=price:1 + */ +///������������������������ sortby={keyname}:1 ���������sortby={keyname}:-1 ������ +@property (nonatomic, strong) NSString *sortby; +/** + * ��������������������� + * '|'���������������������key-value��� + * key������������������������(���������������������) + * value������������������������������������������������������������small,big������������������2��������� + * ������������������������9.99���19.99���������������������2013������������price:9.99,19.99|time:2012,2012 + */ +///���������������������:'|'���������������������key-value���,price:9.99,19.99|time:2012,2012 +@property (nonatomic, strong) NSString *filter; + +///���������������������������������0 +@property (nonatomic, assign) NSInteger pageIndex; +///���������������������������������10������������50 +@property (nonatomic, assign) NSInteger pageSize; + + +@end +///������������������������������ +@interface BMKCloudLocalSearchInfo : BMKCloudSearchInfo { + NSString *_region; +} +///������������(���������������������������������������������)���������, ������������25��������� +@property (nonatomic, strong) NSString *region; +@end + +///������������������������������ +@interface BMKCloudNearbySearchInfo : BMKCloudSearchInfo { + NSString *_location; + int _radius; +} +///���������������������������������������������(116.4321,38.76623),string(25) +@property (nonatomic, strong) NSString *location; +///������������������ +@property (nonatomic, assign) int radius; +@end + +///������������������������������ +@interface BMKCloudBoundSearchInfo : BMKCloudSearchInfo { + NSString *_bounds; +} +///������������������������������������������������������������2���������;���������(116.30,36.20;117.30,37.20),string(25) +@property (nonatomic, strong) NSString *bounds; +@end + +///������������������������������ +@interface BMKCloudDetailSearchInfo : BMKBaseCloudSearchInfo { + NSString *_uid; +} +///uid���poi������id��� +@property (nonatomic, strong) NSString *uid; +@end + +///���RGC��������������������� +@interface BMKCloudReverseGeoCodeSearchInfo : NSObject + +///geo table ��������������������� +@property (nonatomic, assign) NSInteger geoTableId; +///��������� +@property (nonatomic, assign) CLLocationCoordinate2D reverseGeoPoint; + +@end + -- Gitblit v1.8.0