单军华
2018-05-04 25f409185a53e5e7beb17518a684298d92d31b3f
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
//
//  BMKLocationPoi.h
//  BMKLocationKit
//
//  Created by baidu on 2017/3/2.
//  Copyright © 2017年 baidu. All rights reserved.
//
 
 
///描述Poi各属性
@interface BMKLocationPoi : NSObject
 
///BMKLocationPoi的id属性
@property(nonatomic, copy, readonly) NSString *uid;
 
///BMKLocationPoi的名字属性
@property(nonatomic, copy, readonly) NSString *name;
 
///BMKLocationPoi的可信度
@property(nonatomic, assign, readonly) float relaiability;
 
 
/**
 *  @brief 通过NSDictionary初始化方法一
 */
- (id)initWithDictionary:(NSDictionary *)dictionary;
 
 
/**
 *  @brief 通过NSDictionary初始化方法二
 */
- (id)initWithTwoDictionary:(NSDictionary *)dictionary;
 
@end