-
Creates a
PointAnnotationManagerwhich is used to manage a collection ofPointAnnotations. The collection ofPointAnnotationcollection will persist across style changes.Declaration
Swift
public func makePointAnnotationManager(id: String = String(UUID().uuidString.prefix(5)), layerPosition: LayerPosition? = nil) -> PointAnnotationManagerParameters
idOptional string identifier for this manager.
layerPositionOptionally set the
LayerPositionof the layer managed.Return Value
An instance of
PointAnnotationManager -
Creates a
PolygonAnnotationManagerwhich is used to manage a collection ofPolygonAnnotations. The collection ofPolygonAnnotations will persist across style changes.Declaration
Swift
public func makePolygonAnnotationManager(id: String = String(UUID().uuidString.prefix(5)), layerPosition: LayerPosition? = nil) -> PolygonAnnotationManagerParameters
idOptional string identifier for this manager..
layerPositionOptionally set the
LayerPositionof the layer managed.Return Value
An instance of
PolygonAnnotationManager -
Creates a
PolylineAnnotationManagerwhich is used to manage a collection ofPolylineAnnotations. The collection ofPolylineAnnotations will persist across style changes.Declaration
Swift
public func makePolylineAnnotationManager(id: String = String(UUID().uuidString.prefix(5)), layerPosition: LayerPosition? = nil) -> PolylineAnnotationManagerParameters
idOptional string identifier for this manager.
layerPositionOptionally set the
LayerPositionof the layer managed.Return Value
An instance of
PolylineAnnotationManager -
Creates a
CircleAnnotationManagerwhich is used to manage a collection ofCircleAnnotations. The collection ofCircleAnnotations will persist across style changes.Declaration
Swift
public func makeCircleAnnotationManager(id: String = String(UUID().uuidString.prefix(5)), layerPosition: LayerPosition? = nil) -> CircleAnnotationManagerParameters
idOptional string identifier for this manager.
layerPositionOptionally set the
LayerPositionof the layer managed.Return Value
An instance of
CircleAnnotationManager
AnnotationOrchestrator Class Reference