setSymbolTextAllowOverlap method

Future<void> setSymbolTextAllowOverlap(
  1. bool enable
)

If true, the text will be visible even if it collides with other previously drawn symbols.

Implementation

Future<void> setSymbolTextAllowOverlap(bool enable) async {
  await symbolManager?.setTextAllowOverlap(enable);
}