BaiduMap_IOSSDK_v6.2.0_Docs  6.2.0
BMKArcline.h
浏览该文件的文档.
1 /*
2  * BMKArcline.h
3  * BMapKit
4  *
5  * Copyright 2011 Baidu Inc. All rights reserved.
6  *
7  */
8 
9 #import "BMKMultiPoint.h"
10 #import "BMKOverlay.h"
11 
13 @interface BMKArcline : BMKMultiPoint <BMKOverlay>
14 {
16 // bool isYouArc;
17 }
18 
24 + (instancetype)arclineWithPoints:(BMKMapPoint *)points;
25 
31 + (instancetype)arclineWithCoordinates:(CLLocationCoordinate2D *)coords;
32 
38 - (BOOL)setArclineWithPoints:(BMKMapPoint *)points;
39 
45 - (BOOL)setArclineWithCoordinates:(CLLocationCoordinate2D *)coords;
46 
47 @end
此类用于定义一段圆弧
Definition: BMKArcline.h:15
BMKMapRect _boundingMapRect
Definition: BMKArcline.h:16
该类定义多个点,是个由多个点组成的虚基类, 不能直接实例化对象, 要使用其子类BMKPolyline,BMKPolygon来实例化
Definition: BMKMultiPoint.h:18
该类是地图覆盖物的基类,所有地图的覆盖物需要继承自此类
Definition: BMKOverlay.h:17
地理坐标点,用直角地理坐标表示
Definition: BMKTypes.h:192
矩形,用直角地理坐标表示
Definition: BMKTypes.h:226