BMKLocationPoi.h 689 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // BMKLocationPoi.h
  3. // BMKLocationKit
  4. //
  5. // Created by baidu on 2017/3/2.
  6. // Copyright © 2017年 baidu. All rights reserved.
  7. //
  8. ///描述Poi各属性
  9. @interface BMKLocationPoi : NSObject
  10. ///BMKLocationPoi的id属性
  11. @property(nonatomic, copy, readonly) NSString *uid;
  12. ///BMKLocationPoi的名字属性
  13. @property(nonatomic, copy, readonly) NSString *name;
  14. ///BMKLocationPoi的可信度
  15. @property(nonatomic, assign, readonly) float relaiability;
  16. /**
  17. * @brief 通过NSDictionary初始化方法一
  18. */
  19. - (id)initWithDictionary:(NSDictionary *)dictionary;
  20. /**
  21. * @brief 通过NSDictionary初始化方法二
  22. */
  23. - (id)initWithTwoDictionary:(NSDictionary *)dictionary;
  24. @end