fillExtrusionColor property
The base color of this layer. The extrusion's surfaces will be shaded
differently based on this color in combination with the light settings. If
this color is specified with an alpha component, the alpha component will be
ignored; use fillExtrusionOpacity to set layer opacityco.
The default value of this property is an expression that evaluates to
UIColor.blackColor. Set this property to nil to reset it to the default
value.
This property is only applied to the style if fillExtrusionPattern is set to
nil. Otherwise, it is ignored.
You can set this property to an expression containing any of the following:
Constant UIColor values
Predefined functions, including mathematical and string operators
Conditional expressions
Variable assignments and references to assigned variables
Interpolation and step functions applied to the $zoomLevel variable and/or
feature attributes
Implementation
NSExpression get fillExtrusionColor {
final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_fillExtrusionColor);
return NSExpression.castFromPointer(_ret, retain: true, release: true);
}
The base color of this layer. The extrusion's surfaces will be shaded
differently based on this color in combination with the light settings. If
this color is specified with an alpha component, the alpha component will be
ignored; use fillExtrusionOpacity to set layer opacityco.
The default value of this property is an expression that evaluates to
UIColor.blackColor. Set this property to nil to reset it to the default
value.
This property is only applied to the style if fillExtrusionPattern is set to
nil. Otherwise, it is ignored.
You can set this property to an expression containing any of the following:
Constant UIColor values
Predefined functions, including mathematical and string operators
Conditional expressions
Variable assignments and references to assigned variables
Interpolation and step functions applied to the $zoomLevel variable and/or
feature attributes
Implementation
set fillExtrusionColor(NSExpression value) {
_objc_msgSend_xtuoz7(this.ref.pointer, _sel_setFillExtrusionColor_, value.ref.pointer);
}