-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
39 lines (35 loc) · 1.05 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
const Config = {
addons: [""],
vuetify: "addons/dipasAddons/dataNarrator/vuetify",
wfsImgPath: "./resources/img/",
namedProjections: [
["EPSG:25832", "+title=ETRS89/UTM 32N +proj=utm +zone=32 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs"]
],
footer: {
urls: [
{
"bezeichnung": "common:modules.footer.designation",
"url": "https://elie.de/de",
"alias": "Elie GmbH",
"alias_mobil": "elie"
}
],
showVersion: true
},
quickHelp: {
imgPath: "./resources/img/"
},
layerConf: "./resources/services-internet.json",
restConf: "./resources/rest-services-internet.json",
styleConf: "./resources/style_v3.json",
storyConf: "./story.json",
scaleLine: true,
mouseHover: {
numFeaturesToShow: 2,
infoText: "(weitere Objekte. Bitte zoomen.)"
},
};
// conditional export to make config readable by e2e tests
if (typeof module !== "undefined") {
module.exports = Config;
}