File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
Sources/MapLibreSwiftDSL/Style Layers Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import MapLibreSwiftMacros
10
10
@MLNStyleProperty < UIColor > ( " textColor " , supportsInterpolation: true )
11
11
@MLNStyleProperty < Double > ( " textFontSize " , supportsInterpolation: true )
12
12
@MLNStyleProperty < String > ( " text " , supportsInterpolation: false )
13
+ @MLNStyleProperty < [ String ] ? > ( " textFontNames " , supportsInterpolation: false )
13
14
// An enum would probably be better?
14
15
@MLNStyleProperty < String > ( " textAnchor " , supportsInterpolation: false )
15
16
@MLNStyleProperty < CGVector > ( " textOffset " , supportsInterpolation: true )
@@ -148,6 +149,7 @@ private struct SymbolStyleLayerInternal: StyleLayer {
148
149
result. maximumTextWidth = definition. maximumTextWidth
149
150
result. textAnchor = definition. textAnchor
150
151
result. textOffset = definition. textOffset
152
+ result. textFontNames = definition. textFontNames
151
153
152
154
result. textHaloColor = definition. textHaloColor
153
155
result. textHaloWidth = definition. textHaloWidth
You can’t perform that action at this time.
0 commit comments