setIconAllowOverlap method

Future<void> setIconAllowOverlap(
  1. bool value
)

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

Implementation

Future<void> setIconAllowOverlap(bool value) async {
  _iconAllowOverlap = value;
  await _rebuildLayers();
}