MarkerLabelOptions

public struct MarkerLabelOptions : AnnotationOptions, Equatable

Options that define label inside marker. Can be used with MarkerOptions.

Lifecycle

  • MarkerLabelOptions init method.

    Declaration

    Swift

    public init(text: String, fontURI: String)

    Parameters

    text

    Label text to be displayed.

    fontURI

    Font used to display text of the label.

Public

  • Text Appearance

    See more

    Declaration

    Swift

    public struct TextAppearance : Equatable
  • TextOffset represented by two points.

    See more

    Declaration

    Swift

    public struct TextOffset : Equatable
  • Label text to be displayed.

    Declaration

    Swift

    public let text: String
  • Text Appearance

    Declaration

    Swift

    public var textAppearance: TextAppearance
  • Font used to display text of the label.

    Declaration

    Swift

    public let fontURI: String
  • The color of the outline of the text. Default value is clear.

    Declaration

    Swift

    public var outlineColor: UIColor
  • The width of the outline of the text. Default value is 0.

    Declaration

    Swift

    public var outlineWidth: Double