forked from kanton-bern/oerebViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.js
85 lines (65 loc) · 1.71 KB
/
setup.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import * as defaults from './defaults/setup'
export * from '../helpers/template'
let config = {}
if (process.env.NUXT_ENV_CONFIG_CONTEXT) {
config = require('./' + process.env.NUXT_ENV_CONFIG_CONTEXT + '/setup')
}
export const locales = config.locales || defaults.locales
export const view = {
...defaults.view,
...config.view,
}
export const zoom = {
...defaults.zoom,
...config.zoom,
}
export const backgroundLayers =
config.backgroundLayers || defaults.backgroundLayers
export const orthoPhotoLayers =
config.orthoPhotoLayers || defaults.orthoPhotoLayers
export const additionalLayers =
config.additionalLayers || defaults.additionalLayers
export const projectionDefinitions = {
...defaults.projectionDefinitions,
...config.projectionDefinitions,
}
export const esriTokenService = {
...defaults.esriTokenService,
...config.esriTokenService,
}
export const usesEsriToken =
typeof config.usesEsriToken !== 'undefined'
? config.usesEsriToken
: defaults.usesEsriToken
export const mapLayerStyles = {
...defaults.mapLayerStyles,
...config.mapLayerStyles,
}
export const oerebService = {
...defaults.oerebService,
...config.oerebService,
}
export const pdfService = {
...defaults.pdfService,
...config.pdfService,
}
export const externalService = {
...defaults.externalService,
...config.externalService,
}
export const externalInstructions = {
...defaults.externalInstructions,
...config.externalInstructions,
}
export const ownerService = {
...defaults.ownerService,
...config.ownerService,
}
export const searchService = {
...defaults.searchService,
...config.searchService,
}
export const userInterface = {
...defaults.userInterface,
...config.userInterface,
}