heatmapRadius property

NSExpression get heatmapRadius

Radius of influence of one heatmap point in points. Increasing the value makes the heatmap smoother, but less detailed.

This property is measured in points.

The default value of this property is an expression that evaluates to the float 30. 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 numeric values no less than 1 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 heatmapRadius {
  final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_heatmapRadius);
  return NSExpression.castFromPointer(_ret, retain: true, release: true);
}
set heatmapRadius (NSExpression value)

Radius of influence of one heatmap point in points. Increasing the value makes the heatmap smoother, but less detailed.

This property is measured in points.

The default value of this property is an expression that evaluates to the float 30. 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 numeric values no less than 1 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 heatmapRadius(NSExpression value) {
_objc_msgSend_xtuoz7(this.ref.pointer, _sel_setHeatmapRadius_, value.ref.pointer);

}