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
| import { mapState, mapMutations } from 'vuex';
| export default {
| computed: {
| // ...mapState('layerTree', [
| // 'treeData',
| // ]),
| ...mapState('user', ['user']),
| ...mapState('mapTools', [
| 'hideTools',
| 'hidePositionBtn',
| 'statusbar',
| 'navBar',
| 'scaleBarStatus',
| ]),
| ...mapState('mapStatus', ['viewCenter', 'mapStatus']),
| },
| methods: {
| ...mapMutations('layerTree', [
| 'setTreeData',
| 'addTreeChildren',
| 'updataTreeNode',
| 'checkTreeNode',
| 'removeTreeNode',
| ]),
| ...mapMutations('user', ['changeUserData']),
| ...mapMutations('mapTools', [
| 'changeScaleBarVisible',
| 'changeNavBarVisible',
| 'changeMapToolsVisible',
| ]),
| ...mapMutations('mapStatus', ['setView', 'changeMapStatus']),
| },
| };
|
|