BaiduMap_IOSSDK_v6.6.2_Docs 6.6.2
载入中...
搜索中...
未找到
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
12NS_ASSUME_NONNULL_BEGIN
15{
17// bool isYouArc;
18}
19
23+ (nullable instancetype)arclineWithPoints:(BMKMapPoint *)points;
24
28+ (nullable instancetype)arclineWithCoordinates:(CLLocationCoordinate2D *)coords;
29
33- (BOOL)setArclineWithPoints:(BMKMapPoint *)points;
34
38- (BOOL)setArclineWithCoordinates:(CLLocationCoordinate2D *)coords;
39
40@end
41NS_ASSUME_NONNULL_END
此类用于定义一段圆弧
Definition BMKArcline.h:16
BMKMapRect _boundingMapRect
Definition BMKArcline.h:17
该类定义多个点,是个由多个点组成的虚基类, 不能直接实例化对象, 要使用其子类BMKPolyline,BMKPolygon来实例化
Definition BMKMultiPoint.h:18
该类是地图覆盖物的基类,所有地图的覆盖物需要继承自此类
Definition BMKOverlay.h:17
地理坐标点,用直角地理坐标表示
Definition BMKTypes.h:189
矩形,用直角地理坐标表示
Definition BMKTypes.h:233