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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
| var tMenu = {
| "panels": [{
| "children": [{
| "title": "历年数据对比",
| "callBack": "showtool",
| "icon": url + "/Image/contrast.png",
| "param": "1",
| "height": 22,
| "width": 22,
|
| }],
| "left": -1,
| "title": "rt1",
| "top": 18,
| "bottom": -1,
| "right": 360,
| "visible": "true",
| "direction": "wh"
| }, {
| "children": [{
| "title": "返回",
| "callBack": "showtool",
| "icon": url + "/Image/contrast.png",
| "param": "2",
| "height": 22,
| "width": 22,
| }],
| "left": -1,
| "title": "rt2",
| "top": 18,
| "bottom": -1,
| "right": 360,
| "visible": "true",
| "direction": "wh"
| }, {
| "children": [{
| "title": "地质数据管理",
| "callBack": "GeologicaltTool",
| "icon": url + "/Image/dizhishujuguanli.png",
| "param": "2",
| "height": 22,
| "width": 22,
| }],
| "left": -1,
| "title": "GT1",
| "top": 18,
| "bottom": -1,
| "right": 180,
| "visible": "true",
| "direction": "wh"
| }, ]
| };
|
|
| var labeltext1 = [{
| 'name': 'lbl1',
| 'content': '历年数据对比',
| 'fontsize': '20',
| "callBack": "showtool",
| "param": "1",
| 'rgba': '255,255,255,255',
| 'left': '-1',
| 'right': '230',
| 'top': '12',
| 'visible': 'false',
| 'bottom': '-1'
| }, {
| 'name': 'lbl2',
| 'content': '地质数据管理',
| 'fontsize': '20',
| "callBack": "showtool",
| "param": "1",
| 'rgba': '255,255,255,255',
| 'left': '-1',
| 'right': '50',
| 'top': '12',
| 'visible': 'false',
| 'bottom': '-1'
| }]
| var labeltext2 = [{
| 'name': 'lbl1',
| 'content': '返回',
| 'fontsize': '20',
| "callBack": "GeologicaltTool",
| "param": "1",
| 'rgba': '255,255,255,255',
| 'left': '-1',
| 'right': '310',
| 'top': '12',
| 'visible': 'false',
| 'bottom': '-1'
| }, {
| 'name': 'lbl2',
| 'content': '地质数据管理',
| 'fontsize': '20',
| "callBack": "GeologicaltTool",
| "param": "1",
| 'rgba': '255,255,255,255',
| 'left': '-1',
| 'right': '50',
| 'top': '12',
| 'visible': 'false',
| 'bottom': '-1'
| }]
|
|
| var engintree = {
| "panels": [{
| "children": [{
| "title": "资源库",
| "callBack": "showtool",
| "icon": url + "/Image/contrast.png",
| "param": "1",
| "height": 80,
| "width": 196
| }],
| "left": -1,
| "title": "rt1",
| "top": 0,
| "bottom": -1,
| "right": 660,
| "visible": "true",
| "direction": "wh"
| }]
| };
|
| var bMenu = {
| 'menuBackground': [{ 'icon': url + "/Image/contrast.png" }],
| 'bottom': '20',
| 'menu': [{
| 'name': '图层检索',
| "icon": url + "/Image/contrast.png",
| 'callBack': '',
| 'param': '',
| 'children': ''
| },
| {
| 'name': '多期数据',
| "icon": url + "/Image/contrast.png",
| 'callBack': '',
| 'param': '',
| 'children': ''
| }
| ]
| }
|
|