BMKLocationViewDisplayParam.h 1004 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * BMKLocationViewDisplayParam.h
  3. * BMapKit
  4. *
  5. * Copyright 2013 Baidu Inc. All rights reserved.
  6. *
  7. */
  8. #import <UIKit/UIKit.h>
  9. #import <Foundation/Foundation.h>
  10. ///此类表示定位图层自定义样式参数
  11. @interface BMKLocationViewDisplayParam : NSObject
  12. ///定位图标X轴偏移量(屏幕坐标)
  13. @property (nonatomic, assign) CGFloat locationViewOffsetX;
  14. ///定位图标Y轴偏移量(屏幕坐标)
  15. @property (nonatomic, assign) CGFloat locationViewOffsetY;
  16. ///精度圈是否显示,默认YES
  17. @property (nonatomic, assign) BOOL isAccuracyCircleShow;
  18. ///精度圈 填充颜色
  19. @property (nonatomic, strong) UIColor *accuracyCircleFillColor;
  20. ///精度圈 边框颜色
  21. @property (nonatomic, strong) UIColor *accuracyCircleStrokeColor;
  22. ///跟随态旋转角度是否生效,默认YES
  23. @property (nonatomic, assign) BOOL isRotateAngleValid;
  24. ///定位图标名称,需要将该图片放到 mapapi.bundle/images 目录下
  25. @property (nonatomic, strong) NSString* locationViewImgName;
  26. @end