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 double.parse(value.value);
} else {
return null;
}
});
}