diff --git a/Sources/MapboxMaps/Foundation/MapboxMap.swift b/Sources/MapboxMaps/Foundation/MapboxMap.swift index d2b84604bdc..bae400affba 100644 --- a/Sources/MapboxMaps/Foundation/MapboxMap.swift +++ b/Sources/MapboxMaps/Foundation/MapboxMap.swift @@ -371,6 +371,7 @@ public final class MapboxMap: StyleManager { /// This property allows setting a custom glyph URL at runtime, making it easier to /// apply custom fonts to the map without modifying the base style. @_spi(Experimental) + @_documentation(visibility: public) public var styleGlyphURL: String { get { __map.getStyleGlyphURL() } set { __map.setStyleGlyphURLForUrl(newValue) } diff --git a/scripts/api-compatibility-check/breakage_allowlist.txt b/scripts/api-compatibility-check/breakage_allowlist.txt index de537c37a54..bf1c7e30a05 100644 --- a/scripts/api-compatibility-check/breakage_allowlist.txt +++ b/scripts/api-compatibility-check/breakage_allowlist.txt @@ -1924,3 +1924,6 @@ Extension FeaturesetDescriptor has removed conformance to CustomStringConvertibl Extension FeaturesetDescriptor has removed conformance to Hashable Extension FeaturesetDescriptor has removed conformance to NSObjectProtocol Extension FeaturesetDescriptor is no longer open for subclassing + +// Docs for styleGlyphURL +Var MapboxMap.styleGlyphURL is now with @_documentation