| BaiduMap_IOSSDK_v6.6.5_Docs 6.6.5
    | 
#include <BMKGradientCircleView.h>
 
  
| 属性 | |
| UIColor * | centerColor | 
| 中心颜色 | |
| UIColor * | sideColor | 
| 边缘颜色 | |
| float | radiusWeight | 
| float | colorWeight | 
|  属性 继承自 BMKCircleView | |
| BMKCircle * | circle | 
| 该View对应的圆 | |
| BOOL | isClickable | 
| 是否可点击,默认NO | |
| BOOL | isHoleClickable | 
| 镂空区域是否可点击,默认NO:点中镂空区域时不触发该overlay的点击回调 | |
| NSInteger | holeClickedIndex | 
| isHoleClickable为YES时,触发回调的镂空索引值,默认-1:点中的是非镂空区域 | |
| BMKLineBloomMode | lineBloomMode | 
| BMKLineBloomDirection | lineBloomDirection | 
| 默认向两侧发光,kBMKLineBloomDirectionAround; since 6.6.3 | |
| CGFloat | lineBloomWidth | 
| 发光处宽度,默认 0.0f;since 6.6.3 | |
| CGFloat | lineBloomAlpha | 
| 发光处透明度,取值范围 [0 ~ 255],默认 255.0f;since 6.6.3 | |
| CGFloat | lineBloomGradientASPeed | 
| int | lineBloomBlurTimes | 
|  属性 继承自 BMKGeometryView | |
| UIColor * | fillColor | 
| UIColor * | strokeColor | 
| UIColor * | strokeColorProgressForward | 
| 加载绘制当前进度之前的部分的画笔颜色,不设置时当前进度之前的路线不显示,轨迹动画化使用 since 6.6.3 | |
| UIColor * | strokeColorProgressBackward | 
| 加载绘制当前进度之后的部分的画笔颜色,不设置时当前进度之后的路线不显示,轨迹动画化使用 since 6.6.3 | |
| CGFloat | lineWidth | 
| 画笔宽度,默认为0 | |
| BMKLineDashType | lineDashType | 
| 虚线类型, since 5.0.0,默认kBMKLineDashTypeNone (仅支持颜色虚线) | |
|  属性 继承自 BMKOverlayGLBasicView | |
| UIImage * | textureImage | 
| UIImage * | textureImageProgressForward | 
| UIImage * | textureImageProgressBackward | 
| BOOL | keepScale | 
| 纹理图片是否缩放,默认NO | |
|  属性 继承自 BMKOverlayView | |
| id< BMKOverlay > | overlay | 
| 关联的overlay对象 | |
| GLuint | strokeTextureID | 
| 关联的纹理对象ID | |
渐变规则如下: (0 ~ radiusWeight * radius) 该部分颜色从 centerColor 渐变至 centerColor + colorWeight * (sideColor - centerColor); (radiusWeight * radius ~ radius)该部分间颜色从 centerColor + colorWeight * (sideColor - centerColor) 渐变至 sideColor; 该类用于定义圆对应的渐变View since 6.5.4 注意:渐变圆不支持镂空及fillColor
| 
 | readwritenonatomicstrong | 
中心颜色
| 
 | readwritenonatomicassign | 
颜色权重 取值范围(0.0, 1.0),默认 0.2
| 
 | readwritenonatomicassign | 
半径权重 取值范围(0.0, 1.0),默认 0.5
| 
 | readwritenonatomicstrong | 
边缘颜色