setSymbolIconAllowOverlap method

Future<void> setSymbolIconAllowOverlap(
  1. bool enable
)

Implementation

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