File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ class BackgroundLayer extends Layer {
8383 backgroundOpacity: map["paint" ]["background-opacity" ] is num ?
8484 ? (map["paint" ]["background-opacity" ] as num ? )? .toDouble ()
8585 : null ,
86- backgroundPattern: map["layout " ]["background-pattern" ] is String ?
86+ backgroundPattern: map["paint " ]["background-pattern" ] is String ?
8787 ? map["layout" ]["background-pattern" ] as String ?
8888 : null ,
8989 );
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ class FillExtrusionLayer extends Layer {
143143 fillExtrusionOpacity: map["paint" ]["fill-extrusion-opacity" ] is num ?
144144 ? (map["paint" ]["fill-extrusion-opacity" ] as num ? )? .toDouble ()
145145 : null ,
146- fillExtrusionPattern: map["layout " ]["fill-extrusion-pattern" ] is String ?
146+ fillExtrusionPattern: map["paint " ]["fill-extrusion-pattern" ] is String ?
147147 ? map["layout" ]["fill-extrusion-pattern" ] as String ?
148148 : null ,
149149 fillExtrusionTranslate:
@@ -160,7 +160,7 @@ class FillExtrusionLayer extends Layer {
160160 .toLowerCase ()
161161 .contains (map["paint" ]["fill-extrusion-translate-anchor" ])),
162162 fillExtrusionVerticalGradient:
163- map["layout " ]["fill-extrusion-vertical-gradient" ] is bool ?
163+ map["paint " ]["fill-extrusion-vertical-gradient" ] is bool ?
164164 ? map["layout" ]["fill-extrusion-vertical-gradient" ] as bool ?
165165 : null ,
166166 );
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ class FillLayer extends Layer {
132132 fillSortKey: map["layout" ]["fill-sort-key" ] is num ?
133133 ? (map["layout" ]["fill-sort-key" ] as num ? )? .toDouble ()
134134 : null ,
135- fillAntialias: map["layout " ]["fill-antialias" ] is bool ?
135+ fillAntialias: map["paint " ]["fill-antialias" ] is bool ?
136136 ? map["layout" ]["fill-antialias" ] as bool ?
137137 : null ,
138138 fillColor: (map["paint" ]["fill-color" ] as List ? )? .toRGBAInt (),
@@ -141,7 +141,7 @@ class FillLayer extends Layer {
141141 : null ,
142142 fillOutlineColor:
143143 (map["paint" ]["fill-outline-color" ] as List ? )? .toRGBAInt (),
144- fillPattern: map["layout " ]["fill-pattern" ] is String ?
144+ fillPattern: map["paint " ]["fill-pattern" ] is String ?
145145 ? map["layout" ]["fill-pattern" ] as String ?
146146 : null ,
147147 fillTranslate: (map["paint" ]["fill-translate" ] as List ? )
Original file line number Diff line number Diff line change @@ -234,7 +234,7 @@ class LineLayer extends Layer {
234234 lineOpacity: map["paint" ]["line-opacity" ] is num ?
235235 ? (map["paint" ]["line-opacity" ] as num ? )? .toDouble ()
236236 : null ,
237- linePattern: map["layout " ]["line-pattern" ] is String ?
237+ linePattern: map["paint " ]["line-pattern" ] is String ?
238238 ? map["layout" ]["line-pattern" ] as String ?
239239 : null ,
240240 lineTranslate: (map["paint" ]["line-translate" ] as List ? )
You can’t perform that action at this time.
0 commit comments