invalidatePoi method

  1. @override
Future<void> invalidatePoi(
  1. String poiId,
  2. String styleId,
  3. String? text, [
  4. bool transition = false,
])
override

Implementation

@override
Future<void> invalidatePoi(String poiId, String styleId, String? text,
    [bool transition = false]) async {
  await changePoiStyle(poiId, styleId, transition);
  _poiStyleId[poiId] = styleId;
  _poiText[poiId] = text;
  _syncZoomLevel(poiId, styleId, text, true);
}