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/BMKRadarResult.h |   67 +++++++++++++++++++++++++++++++++
 1 files changed, 67 insertions(+), 0 deletions(-)

diff --git a/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Radar.framework/Headers/BMKRadarResult.h b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Radar.framework/Headers/BMKRadarResult.h
new file mode 100644
index 0000000..99456c2
--- /dev/null
+++ b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Radar.framework/Headers/BMKRadarResult.h
@@ -0,0 +1,67 @@
+//
+//  BMKRadarResult.h
+//  RadarComponent
+//
+//  Created by wzy on 15/4/22.
+//  Copyright (c) 2015��� baidu. All rights reserved.
+//
+
+#ifndef RadarComponent_BMKRadarResult_h
+#define RadarComponent_BMKRadarResult_h
+
+#import "BMKRadarOption.h"
+
+///���������������
+typedef enum {
+    BMK_RADAR_NO_ERROR = 0,///<������
+    BMK_RADAR_NO_RESULT,///<���������
+    BMK_RADAR_AK_NOT_BIND,///<app key���������������������������������������
+    BMK_RADAR_NETWOKR_ERROR,///������������������
+    BMK_RADAR_NETWOKR_TIMEOUT,///������������������
+    BMK_RADAR_PERMISSION_UNFINISHED,///������������������������������������������������
+    BMK_RADAR_AK_ERROR,///<app key������
+    BMK_RADAR_USERID_NOT_EXIST,///<userId���������
+    BMK_RADAR_FORBID_BY_USER,///<������������������
+    BMK_RADAR_FORBID_BY_ADMIN///<������������������
+}BMKRadarErrorCode;
+
+///������������������������
+@interface BMKRadarNearbyInfo : NSObject
+
+///������id
+@property (nonatomic, strong) NSString* userId;
+///������������
+@property (nonatomic, assign) CLLocationCoordinate2D pt;
+///������
+@property (nonatomic, assign) NSUInteger distance;
+///������������
+@property (nonatomic, strong) NSString* extInfo;
+///������������
+@property (nonatomic, strong) NSString* mobileType;
+///������������
+@property (nonatomic, strong) NSString* osType;
+///���������
+@property (nonatomic, assign) NSTimeInterval timeStamp;
+
+
+@end
+
+
+///������������������������������������
+@interface BMKRadarNearbyResult : NSObject
+
+///������������
+@property (nonatomic, assign) NSInteger totalNum;
+///���������
+@property (nonatomic, assign) NSInteger pageNum;
+///������������������
+@property (nonatomic, assign) NSInteger currNum;
+///���������������
+@property (nonatomic, assign) NSInteger pageIndex;
+///������������ : BMKRadarNearbyInfo������
+@property (nonatomic, strong) NSArray* infoList;
+
+
+@end
+
+#endif

--
Gitblit v1.8.0