You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
863 B
42 lines
863 B
// |
|
// 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, copy, readonly) NSString *tags; |
|
|
|
///BMKLocationPoi的地址属性 |
|
@property(nonatomic, copy, readonly) NSString *addr; |
|
|
|
///BMKLocationPoi的可信度 |
|
@property(nonatomic, assign, readonly) float relaiability; |
|
|
|
|
|
/** |
|
* @brief 通过NSDictionary初始化方法一 |
|
*/ |
|
- (id)initWithDictionary:(NSDictionary *)dictionary; |
|
|
|
|
|
/** |
|
* @brief 通过NSDictionary初始化方法二 |
|
*/ |
|
- (id)initWithTwoDictionary:(NSDictionary *)dictionary; |
|
|
|
@end |
|
|
|
|
|
|