BaiduMap_IOSSDK_v6.6.3_Docs  6.6.3
BMKGeodesicLine.h
浏览该文件的文档.
1 //
2 // BMKGeodesicLine.h
3 // MapComponent
4 //
5 // Created by zhangbaojin on 2021/3/22.
6 // Copyright © 2021 Baidu. All rights reserved.
7 //
8 
9 #import "BMKPolyline.h"
10 
11 NS_ASSUME_NONNULL_BEGIN
14 
19 + (nullable instancetype)geodesicLineWithPoints:(BMKMapPoint *)points
20  count:(NSUInteger)count NS_SWIFT_NAME(geodesic(points:count:));
21 
26 + (nullable instancetype)geodesicLineWithCoordinates:(CLLocationCoordinate2D *)coords
27  count:(NSUInteger)count NS_SWIFT_NAME(geodesic(coordinates:count:));
28 
33 - (BOOL)setGeodesicLineWithPoints:(BMKMapPoint *)points count:(NSUInteger)count;
34 
39 - (BOOL)setGeodesicLineWithCoordinates:(CLLocationCoordinate2D *)coords count:(NSUInteger)count;
40 
41 @end
42 
43 NS_ASSUME_NONNULL_END
BMKMapPoint
地理坐标点,用直角地理坐标表示
Definition: BMKTypes.h:222
BMKPolyline
此类用于定义一段折线
Definition: BMKPolyline.h:16
BMKMultiPoint::points
BMKMapPoint * points
坐标点数组
Definition: BMKMultiPoint.h:27
BMKPolyline.h
BMKGeodesicLine
此类用于定义一段大地曲线 since 6.3.0
Definition: BMKGeodesicLine.h:14