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 {
  if(kIsWeb) {
    await symbolManager?.setIconAllowOverlap(enable);
  } else {
    await _mapplsGlPlatform.setSymbolIconAllowOverlap(enable);
  }
}