BMKOpenPoiOption.h 808 B

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