百度地图SDK for iOS v4.0.0 类参考
BMKMultiPoint.h
1 /*
2  * BMKMultiPoint.h
3  * BMapKit
4  *
5  * Copyright 2011 Baidu Inc. All rights reserved.
6  *
7  */
8 
9 #import <Foundation/Foundation.h>
10 #import <BaiduMapAPI_Base/BMKTypes.h>
11 #import "BMKShape.h"
12 
14 @interface BMKMultiPoint : BMKShape {
15 @package
16  BMKMapPoint *_points;
17  NSUInteger _pointCount;
18 
19  BMKMapRect _boundingRect;
20 }
21 
23 @property (nonatomic, readonly) BMKMapPoint *points;
24 
26 @property (nonatomic, readonly) NSUInteger pointCount;
27 
33 - (void)getCoordinates:(CLLocationCoordinate2D *)coords range:(NSRange)range;
34 
35 @end
BMKMapPoint * points
坐标点数组
Definition: BMKMultiPoint.h:23
矩形,用直角地理坐标表示
Definition: BMKTypes.h:124
该类为一个抽象类,定义了基于BMKAnnotation的BMKShape类的基本属性和行为,不能直接使用,必须子类化之后才...
Definition: BMKShape.h:13
NSUInteger pointCount
坐标点的个数
Definition: BMKMultiPoint.h:26
该类定义多个点,是个由多个点组成的虚基类, 不能直接实例化对象, 要使用其子类BMKPolyline,BMKPolygon来实例化
Definition: BMKMultiPoint.h:14
地理坐标点,用直角地理坐标表示
Definition: BMKTypes.h:112