hillshadeAccentColor property
The shading color used to accentuate rugged terrain like sharp cliffs and gorges.
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.
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
This property does not support applying interpolation or step functions to feature attributes.
Implementation
NSExpression get hillshadeAccentColor {
final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_hillshadeAccentColor);
return NSExpression.castFromPointer(_ret, retain: true, release: true);
}
The shading color used to accentuate rugged terrain like sharp cliffs and gorges.
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.
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
This property does not support applying interpolation or step functions to feature attributes.
Implementation
set hillshadeAccentColor(NSExpression value) {
_objc_msgSend_xtuoz7(this.ref.pointer, _sel_setHillshadeAccentColor_, value.ref.pointer);
}