Add cartography menu with image overlays (WIP)

This commit is contained in:
2025-06-20 16:07:30 +02:00
parent ecd5db5b4c
commit 8ebaea2ff8
7 changed files with 169 additions and 62 deletions

View File

@@ -11,10 +11,11 @@
/**
* @typedef {Object} GisStateType
* @property {L.Map|null} map
* @property {String|null} apiUrl
* @property {MarkerLookup} markers
* @property {LayerGroupLookup} layers
* @property {Object|null} bibliography
* @property {String|null} apiUrl
* @property {Object} cartography
*/
/** @type {GisStateType} */
@@ -36,6 +37,9 @@ export const GisState = {
},
bibliography: null,
apiUrl : null,
cartography : {
historic: [],
}
}
/**