setIconIgnorePlacement method

Future<void> setIconIgnorePlacement(
  1. bool value
)

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

Implementation

Future<void> setIconIgnorePlacement(bool value) async {
  _iconIgnorePlacement = value;
  await _rebuildLayers();
}