From 7b02207537d35bfa1714bf8beafc921f717d100a Mon Sep 17 00:00:00 2001
From: 单军华
Date: Wed, 11 Jul 2018 10:47:42 +0800
Subject: [PATCH] 首次上传

---
 screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Radar.framework/Headers/BMKRadarOption.h |   61 ++++++++++++++++++++++++++++++
 1 files changed, 61 insertions(+), 0 deletions(-)

diff --git a/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Radar.framework/Headers/BMKRadarOption.h b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Radar.framework/Headers/BMKRadarOption.h
new file mode 100644
index 0000000..b5ad8c5
--- /dev/null
+++ b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Radar.framework/Headers/BMKRadarOption.h
@@ -0,0 +1,61 @@
+//
+//  BMKRadarOption.h
+//  RadarComponent
+//
+//  Created by wzy on 15/4/22.
+//  Copyright (c) 2015��� baidu. All rights reserved.
+//
+
+#ifndef RadarComponent_BMKRadarOption_h
+#define RadarComponent_BMKRadarOption_h
+
+#import <CoreLocation/CoreLocation.h>
+
+///���������������
+@interface BMKRadarUploadInfo : NSObject
+
+///������������������������������������ (������)
+@property (nonatomic, assign) CLLocationCoordinate2D pt;
+
+///������������������������������������������������������
+@property (nonatomic, strong) NSString* extInfo;
+
+@end
+
+typedef enum{
+    BMK_RADAR_SORT_TYPE_DISTANCE_FROM_NEAR_TO_FAR = 0,//������������������������
+    BMK_RADAR_SORT_TYPE_DISTANCE_FROM_FAR_TO_NEAR,//������������������������
+    BMK_RADAR_SORT_TYPE_TIME_FROM_PAST_TO_RECENT,//������������������������������
+    BMK_RADAR_SORT_TYPE_TIME_FROM_RECENT_TO_PAST,//������������������������������
+}BMKRadarSortType;
+
+///������������
+@interface BMKDateRange : NSObject
+
+///������������
+@property (nonatomic, strong) NSDate* startDate;
+///������������
+@property (nonatomic, strong) NSDate* endDate;
+
+@end
+
+///������������������������������������
+@interface BMKRadarNearbySearchOption : NSObject
+
+///������������������������������������ (���������������������������������������������������)
+@property (nonatomic, assign) CLLocationCoordinate2D centerPt;
+///���������������������������������1000
+@property (nonatomic, assign) NSUInteger radius;
+///���������������������������������0
+@property (nonatomic, assign) NSInteger pageIndex;
+///������������������������������50
+@property (nonatomic, assign) NSInteger pageCapacity;
+///���������������������������������������������������BMK_RADAR_SORT_TYPE_DISTANCE_FROM_NEAR_TO_FAR
+@property (nonatomic, assign) BMKRadarSortType sortType;
+///���������������������������������������������������������������
+@property (nonatomic, strong) BMKDateRange* dateRange;
+
+
+@end
+
+#endif

--
Gitblit v1.8.0