add
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
//
|
||||
// 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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user