-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppManager.vue
More file actions
72 lines (50 loc) · 1.24 KB
/
Copy pathAppManager.vue
File metadata and controls
72 lines (50 loc) · 1.24 KB
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
<template>
<div id="app-manager">
<ol-map ref="map" @changeWMSSource="changeWMSSource($event)" @changeWMSStyle="changeWMSStyle($event)"></ol-map>
<animation-canvas ref="animcanvas"></animation-canvas>
<forecast-bar ref="forecastbar" @changeWMSSource="changeWMSSource($event)"></forecast-bar>
</div>
</template>
<script>
// Import components
import Map from "Map.vue";
import AnimationCanvas from "AnimationCanvas.vue";
import ForecastBar from "ForecastBar.vue"
export default {
name: "app-manager",
created(){
},
mounted () {
},
data () {
return {
}
},
methods: {
changeWMSSource: function(infoWMS){
// Update map
this.$refs.map.updateSourceWMS(infoWMS);
let OLMap = this.$refs.map.getOLMap();
// Update animation
if (infoWMS.animation)
this.$refs.animcanvas.defineWMSSource(infoWMS, infoWMS.animation, OLMap);
},
changeWMSStyle: function(newStyle){
// Update Forecastbar
this.$refs.forecastbar.changeWMSStyle(newStyle);
}
},
components: {
"ol-map": Map,
"animation-canvas": AnimationCanvas,
"forecast-bar": ForecastBar,
},
computed: {
}
}
</script>
<style scoped>
#animationCanvas {
background: none;
}
</style>