立得地图iOS SDK 地图&搜索服务参考手册 V1.7.0
LMKMultiPoint.h
浏览该文件的文档.
1 //
2 // LMKMultiPoint.h
3 // LeadorMapSDK
4 //
5 // Copyright © 2016年 IShowChina. All rights reserved.
6 //
7 
8 #import <Foundation/Foundation.h>
9 #import "LMKShape.h"
10 #import "LMKGeometry.h"
11 
15 @interface LMKMultiPoint : LMKShape {
16  @package
17  LMKMapPoint *_points;
18  CLLocationCoordinate2D *_coords;
19  NSUInteger _pointCount;
21 }
22 
26 @property (nonatomic, readonly) LMKMapPoint *points;
27 @property (nonatomic, readonly) CLLocationCoordinate2D *coords;
28 
32 @property (nonatomic, readonly) NSUInteger pointCount;
33 
40 - (void)getCoordinates:(CLLocationCoordinate2D *)coords range:(NSRange)range;
46 - (id)initWithCoordinates:(CLLocationCoordinate2D *)coords count:(NSUInteger)count;
47 
48 @end
地图投影点,用平面直角坐标表示(20级像素坐标)。
Definition: LMKGeometry.h:31
LMKMapPoint * points
坐标点数组
Definition: LMKMultiPoint.h:26
LMKMapRect _boundingRect
Definition: LMKMultiPoint.h:20
CLLocationCoordinate2D * coords
Definition: LMKMultiPoint.h:27
该类是个由多个点组成的虚基类, 不能直接实例化对象, 要使用其子类LMKPolyline,LMKPolygon来实例化 ...
Definition: LMKMultiPoint.h:15
NSUInteger pointCount
坐标点的个数
Definition: LMKMultiPoint.h:32
NSUInteger _pointCount
Definition: LMKMultiPoint.h:19
CLLocationCoordinate2D * _coords
Definition: LMKMultiPoint.h:18
该类为一个抽象类,定义了基于LMKAnnotation的LMKShape类的基本属性和行为,不能直接使用,必须子类化之后才...
Definition: LMKShape.h:15
平面投影矩形结构定义
Definition: LMKGeometry.h:45