立得地图iOS SDK 地图&搜索服务参考手册 V1.7.0
LMKArc.h
浏览该文件的文档.
1 //
2 // LMKArc.h
3 // LeadorMapSDK
4 //
5 // Copyright © 2016年 IShowChina. All rights reserved.
6 //
7 
8 #import <Foundation/Foundation.h>
9 #import "LMKMultiPoint.h"
10 #import "LMKOverlay.h"
11 
16 
24 + (instancetype)arcWithStartCoordinates:(CLLocationCoordinate2D)startCoords
25  midCoordinates:(CLLocationCoordinate2D)midCoords
26  endCoordinates:(CLLocationCoordinate2D)endCoords;
27 
28 @end
该类是地图覆盖物的基类,所有地图的覆盖物需要继承自此类
Definition: LMKOverlay.h:14
该类用于定义一段弧线, 通常LMKArc是LMKArcView的model
Definition: LMKArc.h:15
该类是个由多个点组成的虚基类, 不能直接实例化对象, 要使用其子类LMKPolyline,LMKPolygon来实例化 ...
Definition: LMKMultiPoint.h:15