PolygonAnnotationManager
public class PolygonAnnotationManager : AnnotationManagerInternal
An instance of PolygonAnnotationManager
is responsible for a collection of PolygonAnnotation
s.
-
Declaration
Swift
public var sourceId: String { get }
-
Declaration
Swift
public var layerId: String { get }
-
Declaration
Swift
public let id: String
-
The collection of
PolygonAnnotation
being managed.Declaration
Swift
public var annotations: [PolygonAnnotation] { get set }
-
Set this delegate in order to be called back if a tap occurs on an annotation being managed by this manager.
Note
This annotation manager listens to tap events via theGestureManager.singleTapGestureRecognizer
.Declaration
Swift
@available(*, deprecated, message: "Use tapHandler property of Annotation") public weak var delegate: AnnotationInteractionDelegate?
-
Whether or not the fill should be antialiased.
Declaration
Swift
public var fillAntialias: Bool? { get set }
-
Controls the intensity of light emitted on the source features. This property works only with 3D light, i.e. when
lights
root property is defined.Declaration
Swift
public var fillEmissiveStrength: Double? { get set }
-
The geometry’s offset. Values are [x, y] where negatives indicate left and up, respectively.
Declaration
Swift
public var fillTranslate: [Double]? { get set }
-
Controls the frame of reference for
fill-translate
.Declaration
Swift
public var fillTranslateAnchor: FillTranslateAnchor? { get set }