setSymbolIconAllowOverlap method
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);
}
}