style property
The style of the simple marker symbol, such as circle, cross, or diamond.
SimpleMarkerSymbolStyle.circle if an error occurs.
Implementation
SimpleMarkerSymbolStyle get style {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_SimpleMarkerSymbol_getStyle(
_handle,
errorHandler,
);
});
return SimpleMarkerSymbolStyle._fromCoreValue(
coreValue,
);
}
Implementation
set style(SimpleMarkerSymbolStyle value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_SimpleMarkerSymbol_setStyle(
_handle,
value.coreValue,
errorHandler,
);
});
}