_removeTmsLayer()

in public/js/components/map.js [120:127]


  _removeTmsLayer() {
    if (this._maplibreMap.getLayer(this._tmsLayerId)) {
      this._maplibreMap.removeLayer(this._tmsLayerId);
    }
    if (this._maplibreMap.getSource(this._tmsSourceId)) {
      this._maplibreMap.removeSource(this._tmsSourceId);
    }
  }