1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// BMKOpenPoiOption.h
// UtilsComponent
//
// Created by wzy on 15/3/26.
// Copyright (c) 2015年 baidu. All rights reserved.
//
#ifndef UtilsComponent_BMKOpenPoiOption_h
#define UtilsComponent_BMKOpenPoiOption_h
#import <Foundation/Foundation.h>
#import <CoreLocation/CoreLocation.h>
#import "BMKOpenOption.h"
///调起百度地图: poi详情参数类
@interface BMKOpenPoiDetailOption : BMKOpenOption
///poi的uid
@property (nonatomic, strong) NSString* poiUid;
@end
///调起百度地图: poi周边参数类
@interface BMKOpenPoiNearbyOption : BMKOpenOption
///中心点(经纬度)
@property (nonatomic, assign) CLLocationCoordinate2D location;
///半径
@property (nonatomic, assign) NSUInteger radius;
///关键词
@property (nonatomic, strong) NSString* keyword;
@end
#endif