高德地图SDK(导航) V10.0.900
|
此类用于定义一个由多个点相连的多段线,点与点之间尾部相连但第一点与最后一个点不相连, 通常MAPolyline是MAPolylineView的model More...
#import <MAPolyline.h>
Instance Methods | |
(BOOL) | - setPolylineWithPoints:count: |
重新设置折线坐标点. since 5.0.0 | |
(BOOL) | - setPolylineWithCoordinates:count: |
重新设置折线坐标点. since 5.0.0 | |
![]() | |
(void) | - getCoordinates:range: |
将内部的坐标点数据转化为经纬度坐标并拷贝到coords内存中 | |
![]() | |
(CLLocationCoordinate2D) | - coordinate |
返回区域中心坐标 | |
(MAMapRect) | - boundingMapRect |
区域外接矩形 | |
![]() | |
(void) | - setCoordinate: |
设置标注的坐标,在拖拽时会被调用. | |
Class Methods | |
(instancetype) | + polylineWithPoints:count: |
根据map point数据生成多段线 | |
(instancetype) | + polylineWithCoordinates:count: |
根据经纬度坐标数据生成多段线 | |
Additional Inherited Members | |
![]() | |
NSString * | _title |
标题 | |
NSString * | _subtitle |
副标题 | |
![]() | |
double | _altitude |
海拔 | |
![]() | |
MAMapPoint * | points |
坐标点数组 | |
NSUInteger | pointCount |
坐标点的个数 | |
BOOL | cross180Longitude |
是否跨越180度经度线,默认NO since 6.4.0 | |
![]() | |
NSString * | title |
标题 | |
NSString * | subtitle |
副标题 | |
![]() | |
CLLocationCoordinate2D | coordinate |
返回区域中心坐标 | |
MAMapRect | boundingMapRect |
区域外接矩形 | |
double | altitude |
海拔,单位米,默认0 | |
![]() | |
CLLocationCoordinate2D | coordinate |
标注view中心坐标 | |
NSString * | title |
annotation标题 | |
NSString * | subtitle |
annotation副标题 | |
double | altitude |
annotation海拔高度,单位米,默认0 | |
此类用于定义一个由多个点相连的多段线,点与点之间尾部相连但第一点与最后一个点不相连, 通常MAPolyline是MAPolylineView的model
+ (instancetype) polylineWithCoordinates: | (CLLocationCoordinate2D *) | coords | |
count: | (NSUInteger) | count | |
根据经纬度坐标数据生成多段线
coords | 经纬度坐标数据,coords对应的内存会拷贝,调用者负责该内存的释放 |
count | 经纬度坐标个数 |
+ (instancetype) polylineWithPoints: | (MAMapPoint *) | points | |
count: | (NSUInteger) | count | |
根据map point数据生成多段线
points | map point数据,points对应的内存会拷贝,调用者负责该内存的释放 |
count | map point个数 |
- (BOOL) setPolylineWithCoordinates: | (CLLocationCoordinate2D *) | coords | |
count: | (NSInteger) | count | |
重新设置折线坐标点. since 5.0.0
coords | 指定的经纬度坐标点数组, C数组,内部会做copy,调用者负责内存管理 |
count | 坐标点的个数 |
- (BOOL) setPolylineWithPoints: | (MAMapPoint *) | points | |
count: | (NSInteger) | count | |
重新设置折线坐标点. since 5.0.0
points | 指定的直角坐标点数组, C数组,内部会做copy,调用者负责内存管理 |
count | 坐标点的个数 |