Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
238 changes: 203 additions & 35 deletions web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"html2canvas": "1.4.1",
"json-editor-vue": "0.18.1",
"lodash": "4.18.1",
"maplibre-gl": "4.7.1",
"maplibre-gl": "5.24.0",
"pinia": "3.0.4",
"pmtiles": "4.4.1",
"proj4": "2.20.8",
Expand Down
4 changes: 3 additions & 1 deletion web/src/components/map/LegacyMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ function createMap() {
const newMap = new Map({
container: "mapContainer",
attributionControl: false,
preserveDrawingBuffer: true, // allows screenshots
canvasContextAttributes: {
preserveDrawingBuffer: true, // allows screenshots
},
// transformRequest adds auth headers to tile requests
transformRequest: (url) => {
let headers = {};
Expand Down
Loading