-
경로의 색상.
기본값은
UIColor.blackColor입니다.Declaration
Objective-C
@property (readwrite, copy, nonatomic) UIColor *_Nonnull lineColor;Swift
@NSCopying var lineColor: UIColor { get set } -
경로의 테두리 색상.
기본값은
UIColor.whiteColor입니다.Declaration
Objective-C
@property (readwrite, copy, nonatomic) UIColor *_Nonnull strokeColor;Swift
@NSCopying var strokeColor: UIColor { get set } -
좌표열과 색상을 이용하여 링크 객체를 생성합니다.
coords의 크기는2이상이어야 합니다.Declaration
Objective-C
+ (nonnull instancetype)linkWithCoords:(NSArray<INVLatLng *> *_Nonnull)coords lineColor:(UIColor *_Nonnull)lineColor strokeColor:(UIColor *_Nonnull)strokeColor;Swift
convenience init(coords: [INVLatLng], lineColor: UIColor, stroke strokeColor: UIColor)Parameters
coords좌표열.
lineColor색상.
strokeColor테두리 색상.
Return Value
INVRouteLink객체.
INVRouteLink Class Reference