removePoi method

  1. @override
Future<void> removePoi(
  1. String poiId
)
override

Implementation

@override
Future<void> removePoi(String poiId) async {
  _webPoi[poiId]?.setMap(null);
  _webPoi.remove(poiId);

  _currentPoiLevel.remove(poiId);
  _poiStyleId.remove(poiId);
  _poiText.remove(poiId);
}