PerLevelPoiStyle
public class PerLevelPoiStyle : NSObject
특정레벨에 적용될 라벨스타일을 지정하는 클래스.
PoiStyle을 하나 이상의 PerLevelPoiStyle로 구성할 수 있다.
PerLevelPoiStyle에 지정된 레벨에서부터 하위의 PerLevelStyle이 지정된 레벨이 되기전까지 적용된다.
-
initializer
Declaration
Swift
@objc public init(iconStyle: PoiIconStyle, padding: Float = 0.0, level: Int = 0)
Parameters
iconStyle
Poi의 IconStyle.
padding
padding
level
해당 Style이 표출되기 시작할 레벨. 특정 레벨에서 해당 표출 레벨의 iconStyle, 혹은 textStyle이 추가되지 않은 경우, Poi 심볼이나 텍스트가 표시되지 않는다.
-
initializer
Declaration
Swift
@objc public init(textStyle: PoiTextStyle, padding: Float = 0.0, level: Int = 0)
Parameters
textStyle
Poi의 TextStyle
padding
padding
level
해당 Style이 표출되기 시작할 레벨. 특정 레벨에서 해당 표출 레벨의 iconStyle, 혹은 textStyle이 추가되지 않은 경우, Poi 심볼이나 텍스트가 표시되지 않는다.
-
initializer
Declaration
Swift
@objc public init(iconStyle: PoiIconStyle, textStyle: PoiTextStyle, padding: Float = 0.0, level: Int = 0)
Parameters
iconStyle
Poi의 IconStyle.
textStyle
Poi의 TextStyle
padding
padding
level
해당 Style이 표출되기 시작할 레벨. 특정 레벨에서 해당 표출 레벨의 iconStyle, 혹은 textStyle이 추가되지 않은 경우, Poi 심볼이나 텍스트가 표시되지 않는다.
-
Poi의 IconStyle
See also
PoiIconStyleDeclaration
Swift
@objc public var iconStyle: PoiIconStyle? { get }
-
Poi의 TextStyle
See also
PoiTextStyleDeclaration
Swift
@objc public var textStyle: PoiTextStyle? { get }
-
padding
Declaration
Swift
@objc public var padding: Float { get }
-
Style이 표출되기 시작할 레벨
Declaration
Swift
@objc public var level: Int { get }