_removeOverlayLayer()

in public/js/components/map.js [129:143]


  _removeOverlayLayer() {
    if (this._maplibreMap.getLayer(this._overlayFillLayerId)) {
      this._maplibreMap.removeLayer(this._overlayFillLayerId);
    }
    if (this._maplibreMap.getLayer(this._overlayLineLayerId)) {
      this._maplibreMap.removeLayer(this._overlayLineLayerId);
    }
    if (this._maplibreMap.getLayer(this._overlayFillHighlightId)) {
      this._maplibreMap.removeLayer(this._overlayFillHighlightId);
    }
    if (this._maplibreMap.getSource(this._overlaySourceId)) {
      this._maplibreMap.removeSource(this._overlaySourceId);
    }
    this._removePopup();
  }