Added ability to enable https in express

This commit is contained in:
Davide Passoni
2024-03-13 15:05:30 +01:00
parent 5ba1498802
commit f0c4b10084
5 changed files with 83 additions and 20 deletions

View File

@@ -183,36 +183,34 @@ declare module "constants/constants" {
maxZoom: number;
attribution: string;
};
"USGS Topo": {
urlTemplate: string;
minZoom: number;
maxZoom: number;
attribution: string;
};
"OpenStreetMap Mapnik": {
urlTemplate: string;
minZoom: number;
maxZoom: number;
attribution: string;
};
OPENVKarte: {
"DCS Marianas Modern": ({
urlTemplate: string;
minZoom: number;
maxZoom: number;
attribution: string;
};
"Esri.DeLorme": {
minNativeZoom?: undefined;
maxNativeZoom?: undefined;
attribution?: undefined;
} | {
urlTemplate: string;
minNativeZoom: number;
maxNativeZoom: number;
minZoom: number;
maxZoom: number;
attribution?: undefined;
} | {
urlTemplate: string;
minNativeZoom: number;
maxNativeZoom: number;
minZoom: number;
maxZoom: number;
attribution: string;
};
CyclOSM: {
urlTemplate: string;
minZoom: number;
maxZoom: number;
attribution: string;
};
})[];
};
export const IDLE = "Idle";
export const MOVE_UNIT = "Move unit";