立得地图iOS SDK 地图&搜索服务参考手册 V1.7.0
|
该类用于定义一段弧线, 通常LMKArc是LMKArcView的model 更多...
#import <LMKArc.h>
类方法 |
|
(instancetype) | + arcWithStartCoordinates:midCoordinates:endCoordinates: |
构建弧线数据的类 更多... |
|
额外继承的成员函数 |
|
![]() |
|
(void) | - getCoordinates:range: |
将内部的坐标点数据转化为经纬度坐标并拷贝到coords内存中 更多... |
|
(id) | - initWithCoordinates:count: |
初始化坐标和坐标点数 更多... |
|
![]() |
|
(void) | - buildDataWithType: |
构建数据 更多... |
|
![]() |
|
(NSString *) | - title |
获取annotation标题 更多... |
|
(NSString *) | - subtitle |
获取annotation副标题 更多... |
|
(void) | - setCoordinate: |
设置标注的坐标,在拖拽时会被调用. 更多... |
|
![]() |
|
package LMKMapPoint * | _points |
CLLocationCoordinate2D * | _coords |
NSUInteger | _pointCount |
LMKMapRect | _boundingRect |
![]() |
|
NSString * | _title |
NSString * | _subtitle |
![]() |
|
LMKMapPoint * | points |
坐标点数组 更多... |
|
CLLocationCoordinate2D * | coords |
NSUInteger | pointCount |
坐标点的个数 更多... |
|
![]() |
|
NSString * | title |
标题 更多... |
|
NSString * | subtitle |
副标题 更多... |
|
NSUInteger | projection_type |
投影类型 更多... |
|
![]() |
|
CLLocationCoordinate2D | coordinate |
标注view中心坐标 更多... |
|
![]() |
|
CLLocationCoordinate2D | coordinate |
返回区域中心坐标. 更多... |
|
LMKMapRect | boundingMapRect |
区域外接矩形 更多... |
|
该类用于定义一段弧线, 通常LMKArc是LMKArcView的model
+ (instancetype) arcWithStartCoordinates: | (CLLocationCoordinate2D) | startCoords | |
midCoordinates: | (CLLocationCoordinate2D) | midCoords | |
endCoordinates: | (CLLocationCoordinate2D) | endCoords | |
构建弧线数据的类
startCoords | 起点坐标 |
midCoords | 中间点坐标 |
endCoords | 终点坐标 |