setSymbolIconIgnorePlacement method

Future<void> setSymbolIconIgnorePlacement(
  1. bool enable
)

If true, other symbols can be visible even if they collide with the icon.

Implementation

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