tolerance property
Douglas-Peucker simplification tolerance (higher means simpler geometries and faster performance).
Implementation
Future<double?> get tolerance async {
return _style?.getStyleSourceProperty(id, "tolerance").then((value) {
if (value.value != null) {
return (value.value as num).toDouble();
} else {
return null;
}
});
}