heatmapRadiusTransition property
MLNTransition
get
heatmapRadiusTransition
The transition affecting any changes to this layer’s heatmapRadius property.
This property corresponds to the heatmap-radius-transition property in the style JSON file format.
Implementation
MLNTransition get heatmapRadiusTransition {
final _ptr = pkg_ffi.calloc<MLNTransition>();
objc.useMsgSendVariants ? _objc_msgSend_1i0p3hyStret(_ptr, this.ref.pointer, _sel_heatmapRadiusTransition) : _ptr.ref = _objc_msgSend_1i0p3hy(this.ref.pointer, _sel_heatmapRadiusTransition);
final _finalizable = _ptr.cast<ffi.Uint8>().asTypedList(
ffi.sizeOf<MLNTransition>(), finalizer: pkg_ffi.calloc.nativeFree);
return ffi.Struct.create<MLNTransition>(_finalizable);
}
set
heatmapRadiusTransition
(MLNTransition value)
The transition affecting any changes to this layer’s heatmapRadius property.
This property corresponds to the heatmap-radius-transition property in the style JSON file format.
Implementation
set heatmapRadiusTransition(MLNTransition value) {
_objc_msgSend_z7lywk(this.ref.pointer, _sel_setHeatmapRadiusTransition_, value);
}