Circle

public class Circle : Annotation

Represents the circle on the map.

  • A unique ID to identify a specific annotation.

    Declaration

    Swift

    public let annotationID: String
  • tag

    The name or title of the annotation.

    Declaration

    Swift

    public var tag: String?
  • Indicates if a given annotation can produce delegate call on MapDelegate.

    Declaration

    Swift

    public var isSelectable: Bool
  • The coordinate of the center of the circle.

    Declaration

    Swift

    public var centerCoordinate: CLLocationCoordinate2D { get }
  • The radius of the circle, in meters.

    Declaration

    Swift

    public var radius: Double { get }
  • Whether the Circle is visible at the moment.

    Declaration

    Swift

    public var isVisible: Bool { get set }