|
BaiduMap_IOSSDK_v6.6.3_Docs
6.6.3
|
此文件定义分段折线 since 6.5.0 更多...
#import <BMKMultiPolyline.h>
构造函数 | |
| (BOOL) | - setMultiPolylineWithPoints:count:drawIndexs: |
| (BOOL) | - setMultiPolylineWithCoordinates:count:drawIndexs: |
构造函数 继承自 BMKPolyline | |
| (BOOL) | - setPolylineWithPoints:count: |
| (BOOL) | - setPolylineWithCoordinates:count: |
| (NSArray< NSNumber * > *textureIndex) | - __deprecated_msg |
| 颜色/纹理索引数组 更多... | |
| (BOOL) | - setPolylineWithPoints:count:textureIndex: |
| (BOOL) | - setPolylineWithCoordinates:count:textureIndex: |
构造函数 继承自 BMKMultiPoint | |
| (void) | - getCoordinates:range: |
构造函数 继承自 <BMKAnnotation> | |
| (NSString *) | - title |
| 获取annotation标题 更多... | |
| (NSString *) | - subtitle |
| 获取annotation副标题 更多... | |
| (void) | - setCoordinate: |
构造函数 继承自 <BMKOverlay> | |
| (BOOL) | - intersectsMapRect: |
类方法 | |
| (nullable instancetype) | + multiPolylineWithPoints:count:drawIndexs: |
| (nullable instancetype) | + multiPolylineWithCoordinates:count:drawIndexs: |
类方法 继承自 BMKPolyline | |
| (nullable instancetype) | + polylineWithPoints:count: |
| (nullable instancetype) | + polylineWithCoordinates:count: |
| (nullable instancetype) | + polylineWithPoints:count:textureIndex: |
| (nullable instancetype) | + polylineWithCoordinates:count:textureIndex: |
属性 | |
| NSArray< NSNumber * > * | drawIndexs |
| 颜色/纹理索引数组 更多... | |
属性 继承自 BMKPolyline | |
| BOOL | isThined |
| BMKCoordAlgorithm | thin |
| float | thinFactor |
| 抽稀算法系数,默认4,since 6.6.3 更多... | |
| BMKCoordAlgorithm | smooth |
| float | smoothFactor |
| 平滑算法系数,默认16,since 6.6.3 更多... | |
| BMKMapAnimation * | animation |
| 轨迹动画,使用BMKMapAnimation子类实现动画,支持BMKMapAlphaAnimation,BMKMapTrackAnimation,since 6.6.3 更多... | |
| BMKLineDirectionCross180Type | lineDirectionCross180 |
属性 继承自 BMKMultiPoint | |
| BMKMapPoint * | points |
| 坐标点数组 更多... | |
| NSUInteger | pointCount |
| 坐标点的个数 更多... | |
属性 继承自 BMKShape | |
| NSString * | title |
| 要显示的标题;注意:如果不设置title,无法点击annotation,也无法使用回调函数; 更多... | |
| NSString * | subtitle |
| 要显示的副标题 更多... | |
属性 继承自 <BMKAnnotation> | |
| CLLocationCoordinate2D | coordinate |
| 标注view中心坐标. 更多... | |
属性 继承自 <BMKOverlay> | |
| CLLocationCoordinate2D | coordinate |
| 返回区域中心坐标. 更多... | |
| BMKMapRect | boundingMapRect |
| 返回区域外接矩形 更多... | |
额外继承的成员函数 | |
Protected 属性 继承自 BMKMultiPoint | |
| package BMKMapPoint * | _points |
| NSUInteger | _pointCount |
| BMKMapRect | _boundingRect |
此文件定义分段折线 since 6.5.0
| + (nullable instancetype) multiPolylineWithCoordinates: | (CLLocationCoordinate2D *) | coords | |
| count: | (NSUInteger) | count | |
| drawIndexs: | (NSArray< NSNumber * > *) | drawIndexs | |
根据指定经纬度坐标点生成一段折线 分段纹理绘制:其对应的BMKMultiTexturePolylineView必须使用 textureImages 加载纹理图片; 分段颜色绘制:其对应的BMKMultiColorPolylineView必须设置strokeColors属性
| coords | 指定的经纬度坐标点数组 |
| count | coords数组中坐标点的个数 |
| drawIndexs | 纹理索引数组(颜色索引数组),成员为NSNumber,且为非负数,负数按0处理 |
| + (nullable instancetype) multiPolylineWithPoints: | (BMKMapPoint *) | points | |
| count: | (NSUInteger) | count | |
| drawIndexs: | (NSArray< NSNumber * > *) | drawIndexs | |
根据指定直角坐标点生成一段折线 分段纹理绘制/分段颜色绘制,根据指定坐标点生成一段折线 分段纹理绘制:其对应的BMKMultiTexturePolylineView必须使用 textureImages 加载纹理图片; 分段颜色绘制:其对应的BMKMultiColorPolylineView必须设置strokeColors属性
| points | 指定的直角坐标点数组 |
| count | points数组中坐标点的个数 |
| drawIndexs | 纹理索引数组(颜色索引数组),成员为NSNumber,且为非负数,负数按0处理 |
| - (BOOL) setMultiPolylineWithCoordinates: | (CLLocationCoordinate2D *) | coords | |
| count: | (NSUInteger) | count | |
| drawIndexs: | (NSArray< NSNumber * > *) | drawIndexs | |
重新设置折线经纬度 和 纹理索引
| coords | 指定的经纬度坐标点数组 |
| count | coords数组中坐标点的个数 |
| drawIndexs | 纹理索引数组(颜色索引数组),成员为NSNumber,且为非负数,负数按0处理 |
| - (BOOL) setMultiPolylineWithPoints: | (BMKMapPoint *) | points | |
| count: | (NSUInteger) | count | |
| drawIndexs: | (NSArray< NSNumber * > *) | drawIndexs | |
重新设置折线坐标点 和 纹理索引
| points | 指定的直角坐标点数组 |
| count | points数组中坐标点的个数 |
| drawIndexs | 纹理索引数组(颜色索引数组),成员为NSNumber,且为非负数,负数按0处理 |
|
readwritenonatomiccopy |
颜色/纹理索引数组