9 #ifndef RadarComponent_BMKRadarOption_h 10 #define RadarComponent_BMKRadarOption_h 12 #import <CoreLocation/CoreLocation.h> 18 @property (nonatomic, assign) CLLocationCoordinate2D
pt;
21 @property (nonatomic, strong) NSString*
extInfo;
26 BMK_RADAR_SORT_TYPE_DISTANCE_FROM_NEAR_TO_FAR = 0,
27 BMK_RADAR_SORT_TYPE_DISTANCE_FROM_FAR_TO_NEAR,
28 BMK_RADAR_SORT_TYPE_TIME_FROM_PAST_TO_RECENT,
29 BMK_RADAR_SORT_TYPE_TIME_FROM_RECENT_TO_PAST,
36 @property (nonatomic, strong) NSDate* startDate;
38 @property (nonatomic, strong) NSDate* endDate;
46 @property (nonatomic, assign) CLLocationCoordinate2D centerPt;
48 @property (nonatomic, assign) NSUInteger radius;
50 @property (nonatomic, assign) NSInteger pageIndex;
52 @property (nonatomic, assign) NSInteger pageCapacity;
54 @property (nonatomic, assign) BMKRadarSortType sortType;
查询周边的用户信息参数类
Definition: BMKRadarOption.h:43
NSString * extInfo
扩展信息,和该用户相关的信息(可选)
Definition: BMKRadarOption.h:21
CLLocationCoordinate2D pt
地址坐标,百度经纬度坐标 (必须)
Definition: BMKRadarOption.h:18
用户信息类
Definition: BMKRadarOption.h:15
时间区间
Definition: BMKRadarOption.h:33