BaiduMap_IOSSDK_v5.4.0_Docs
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 
14 {
15  BMKMapRect _boundingMapRect;
16  bool isYouArc;
17 }
18 
24 + (BMKArcline *)arclineWithPoints:(BMKMapPoint *)points;
25 
31 + (BMKArcline *)arclineWithCoordinates:(CLLocationCoordinate2D *)coords;
32 
38 - (BOOL)setArclineWithPoints:(BMKMapPoint *)points;
39 
45 - (BOOL)setArclineWithCoordinates:(CLLocationCoordinate2D *)coords;
46 
47 @end
该类是地图覆盖物的基类,所有地图的覆盖物需要继承自此类
Definition: BMKOverlay.h:13
矩形,用直角地理坐标表示
Definition: BMKTypes.h:224
此类用于定义一段圆弧
Definition: BMKArcline.h:13
该类定义多个点,是个由多个点组成的虚基类, 不能直接实例化对象, 要使用其子类BMKPolyline,BMKPolygon来实例化
Definition: BMKMultiPoint.h:14
地理坐标点,用直角地理坐标表示
Definition: BMKTypes.h:190