lineCap property
The display of line endings.
The default value of this property is an expression that evaluates to butt.
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 MLNLineCap values
Any of the following constant string values:
butt: A cap with a squared-off end which is drawn to the exact endpoint
of the line.
round: A cap with a rounded end which is drawn beyond the endpoint of the
line at a radius of one-half of the line's width and centered on the endpoint
of the line.
square: A cap with a squared-off end which is drawn beyond the endpoint
of the line at a distance of one-half of the line's width.
Predefined functions, including mathematical and string operators
Conditional expressions
Variable assignments and references to assigned variables
Step functions applied to the $zoomLevel variable
This property does not support applying interpolation functions to the
$zoomLevel variable or applying interpolation or step functions to feature
attributes.
Implementation
NSExpression get lineCap {
final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_lineCap);
return NSExpression.castFromPointer(_ret, retain: true, release: true);
}
The display of line endings.
The default value of this property is an expression that evaluates to butt.
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 MLNLineCap values
Any of the following constant string values:
butt: A cap with a squared-off end which is drawn to the exact endpoint
of the line.
round: A cap with a rounded end which is drawn beyond the endpoint of the
line at a radius of one-half of the line's width and centered on the endpoint
of the line.
square: A cap with a squared-off end which is drawn beyond the endpoint
of the line at a distance of one-half of the line's width.
Predefined functions, including mathematical and string operators
Conditional expressions
Variable assignments and references to assigned variables
Step functions applied to the $zoomLevel variable
This property does not support applying interpolation functions to the
$zoomLevel variable or applying interpolation or step functions to feature
attributes.
Implementation
set lineCap(NSExpression value) {
_objc_msgSend_xtuoz7(this.ref.pointer, _sel_setLineCap_, value.ref.pointer);
}