diff --git a/CHANGELOG.md b/CHANGELOG.md index 57b288f67e..f9c9a87aa9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,14 @@ ### 🐞 Bug fixes +- *...Add new stuff here...* + +## 1.15.1 + +### 🐞 Bug fixes + - Add void return for some method declaration to match TS strict mode (#194) +- Fix css leftovers (#83) ## 1.15.0 diff --git a/package.json b/package.json index 2a3859900b..62d87fdaa2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "maplibre-gl", "description": "BSD licensed community fork of mapbox-gl, a WebGL interactive maps library", - "version": "1.15.0", + "version": "1.15.1", "main": "dist/maplibre-gl.js", "style": "dist/maplibre-gl.css", "license": "BSD-3-Clause", diff --git a/src/ui/map.js b/src/ui/map.js index 59271e9b2f..cd4ec09f03 100755 --- a/src/ui/map.js +++ b/src/ui/map.js @@ -2286,7 +2286,7 @@ class Map extends Camera { const container = this._container; container.classList.add('maplibregl-map'); - const canvasContainer = this._canvasContainer = DOM.create('div', 'mapboxgl-canvas-container', container); + const canvasContainer = this._canvasContainer = DOM.create('div', 'maplibregl-canvas-container', container); if (this._interactive) { canvasContainer.classList.add('maplibregl-interactive'); }