INVLine
Deprecated
INVRouteLink
로 대체됩니다.
Objective-C
@interface INVLine : NSObject
Swift
class INVLine : NSObject
다중 선형에서 사용하는 선형의 좌표열과 색상 속성을 정의한 클래스.
-
Deprecated
INVRouteLink
로 대체됩니다.라인의 색상.
기본값은
UIColor.blackColor
입니다.Declaration
Objective-C
@property (nonatomic, copy) UIColor *_Nonnull color;
Swift
@NSCopying var color: UIColor { get set }
-
Deprecated
INVRouteLink
로 대체됩니다.라인의 좌표열.
coords
의 크기는2
이상이어야 합니다. -
Deprecated
INVRouteLink
로 대체됩니다.좌표열을 이용하여 라인 객체를 생성합니다.
coords
의 크기는2
이상이어야 합니다.Declaration
Objective-C
+ (nonnull instancetype)lineWithCoords:(nonnull NSArray<INVLatLng *> *)coords;
Swift
convenience init(coords: [INVLatLng])
Parameters
coords
좌표열.
Return Value
INVLine
객체. -
Deprecated
INVRouteLink
로 대체됩니다.좌표열과 색상을 이용하여 라인 객체를를 생성합니다.
coords
의 크기는2
이상이어야 합니다.Declaration
Objective-C
+ (nonnull instancetype)lineWithCoords:(nonnull NSArray<INVLatLng *> *)coords color:(nonnull UIColor *)color;
Swift
convenience init(coords: [INVLatLng], color: UIColor)
Parameters
coords
좌표열.
color
색상.
Return Value
INVLine
객체.