OrnamentsManager

public class OrnamentsManager : NSObject

APIs for managing map ornaments

  • The OrnamentOptions object that is used to set up and update the required ornaments on the map.

    Declaration

    Swift

    public var options: OrnamentOptions { get set }
  • The view for the logo ornament. This view can be used to position other views relative to the logo ornament, but it should not be manipulated. Use logo to configure the logo presentation if customization is needed.

    Declaration

    Swift

    public var logoView: UIView { get }
  • The view for the scale bar ornament. This view can be used to position other views relative to the scale bar ornament, but it should not be manipulated. Use scaleBar to configure the scale bar presentation if customization is needed.

    Declaration

    Swift

    public var scaleBarView: UIView { get }
  • The view for the compass ornament. This view can be used to position other views relative to the compass ornament, but it should not be manipulated. Use compass to configure the compass presentation if customization is needed.

    Declaration

    Swift

    public var compassView: UIView { get }
  • The view for the attribution button ornament. This view can be used to position other views relative to the attribution button ornament, but it should not be manipulated. Use attributionButton to configure the attribution button presentation if customization is needed.

    Declaration

    Swift

    public var attributionButton: UIView { get }