setSymbolIconAllowOverlap method

Future<void> setSymbolIconAllowOverlap(
  1. bool enable
)

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

Implementation

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