circlePitchAlignment property

NSExpression get circlePitchAlignment

Orientation of circle when map is pitched.

The default value of this property is an expression that evaluates to viewport. 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 MLNCirclePitchAlignment values Any of the following constant string values: map: The circle is aligned to the plane of the map. viewport: The circle is aligned to the plane of the viewport. 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 circlePitchAlignment {
  final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_circlePitchAlignment);
  return NSExpression.castFromPointer(_ret, retain: true, release: true);
}
set circlePitchAlignment (NSExpression value)

Orientation of circle when map is pitched.

The default value of this property is an expression that evaluates to viewport. 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 MLNCirclePitchAlignment values Any of the following constant string values: map: The circle is aligned to the plane of the map. viewport: The circle is aligned to the plane of the viewport. 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 circlePitchAlignment(NSExpression value) {
_objc_msgSend_xtuoz7(this.ref.pointer, _sel_setCirclePitchAlignment_, value.ref.pointer);

}