BaiduMap_IOSSDK_v6.6.3_Docs
6.6.3
BaiduMapAPI_Map.framework
Headers
BMKMultiPoint.h
浏览该文件的文档.
1
/*
2
* BMKMultiPoint.h
3
* BMapKit
4
*
5
* Copyright 2011 Baidu Inc. All rights reserved.
6
*
7
*/
8
9
#ifdef USE_NAVI
10
#import <BaiduMapAPI_Base_Navi/BMKTypes.h>
11
#else
12
#import <BaiduMapAPI_Base/BMKTypes.h>
13
#endif
14
#import "
BMKShape.h
"
15
16
NS_ASSUME_NONNULL_BEGIN
18
@interface
BMKMultiPoint
:
BMKShape
{
19
@
package
20
BMKMapPoint *_points;
21
NSUInteger
_pointCount
;
22
23
BMKMapRect
_boundingRect
;
24
}
25
27
@property
(nonatomic, readonly)
BMKMapPoint
*
points
;
28
30
@property
(nonatomic, readonly) NSUInteger
pointCount
;
31
35
- (void)getCoordinates:(CLLocationCoordinate2D *)coords range:(NSRange)range;
36
37
@end
38
NS_ASSUME_NONNULL_END
BMKShape.h
BMKShape
该类为一个抽象类,定义了基于BMKAnnotation的BMKShape类的基本属性和行为,不能直接使用,必须子类化之后才能使用
Definition:
BMKShape.h:13
BMKMapPoint
地理坐标点,用直角地理坐标表示
Definition:
BMKTypes.h:222
BMKMultiPoint::points
BMKMapPoint * points
坐标点数组
Definition:
BMKMultiPoint.h:27
BMKMultiPoint::_boundingRect
BMKMapRect _boundingRect
Definition:
BMKMultiPoint.h:23
BMKMultiPoint::_pointCount
NSUInteger _pointCount
Definition:
BMKMultiPoint.h:21
BMKMapRect
矩形,用直角地理坐标表示
Definition:
BMKTypes.h:278
BMKMultiPoint::pointCount
NSUInteger pointCount
坐标点的个数
Definition:
BMKMultiPoint.h:30
BMKMultiPoint
该类定义多个点,是个由多个点组成的虚基类, 不能直接实例化对象, 要使用其子类BMKPolyline,BMKPolygon来实例化
Definition:
BMKMultiPoint.h:18
制作者
1.8.20