WIP: test interactive wall layers

This commit is contained in:
2026-09-14 16:00:23 +02:00
parent 7293ac348d
commit ace42261cf
9 changed files with 210 additions and 82 deletions
+4
View File
@@ -11,6 +11,7 @@
/**
* @typedef {Object} GisStateType
* @property {L.Map|null} map
* @property {{string: L.Layer}|null} baseLayers
* @property {MarkerLookup} markers
* @property {LayerGroupLookup} layers
* @property {Object|null} bibliography
@@ -21,6 +22,7 @@
/** @type {GisStateType} */
export const GisState = {
map: null,
baseLayers: null,
markers: {
sites: {},
notConserved: {},
@@ -31,6 +33,7 @@ export const GisState = {
buildingTechs: {},
},
layers: {
geometries: {},
sites: {},
notConserved: {},
findings: {},
@@ -44,6 +47,7 @@ export const GisState = {
cartography : {
historic: [],
cadastral: null,
buildings: null,
}
}