lineJoin property
The display of lines when joining.
The default value of this property is an expression that evaluates to miter.
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 MLNLineJoin values
Any of the following constant string values:
bevel: A join 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.
round: A join 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.
miter: A join with a sharp, angled corner which is drawn with the outer
sides beyond the endpoint of the path until they meet.
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 lineJoin {
final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_lineJoin);
return NSExpression.castFromPointer(_ret, retain: true, release: true);
}
The display of lines when joining.
The default value of this property is an expression that evaluates to miter.
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 MLNLineJoin values
Any of the following constant string values:
bevel: A join 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.
round: A join 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.
miter: A join with a sharp, angled corner which is drawn with the outer
sides beyond the endpoint of the path until they meet.
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 lineJoin(NSExpression value) {
_objc_msgSend_xtuoz7(this.ref.pointer, _sel_setLineJoin_, value.ref.pointer);
}