MaplibreTileBoundaries.prototype.render = function()

in public/assets/maplibre/maplibre-gl-tile-boundaries.js [76:84]


MaplibreTileBoundaries.prototype.render = function () {
    if (this._tileBoundaries) {
        this._map.showTileBoundaries = true;
        this._toggle.setHideTileBoundariesIcon();
    } else {
        this._map.showTileBoundaries = false;
        this._toggle.setShowTileBoundariesIcon();
    }
};