forked from dmuthami/ilex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.txt
More file actions
63 lines (56 loc) · 1.78 KB
/
code.txt
File metadata and controls
63 lines (56 loc) · 1.78 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
<!-- custom controls-->
<div id="divMaster" class="div-Master">
<!-- Header row -->
<div id = "mapDiv" class = "map-Div">
<div id="mapLeft" class = "map-Left"> Base Maps</div>
<div id="mapRight" class = "map-Right">
<div id="content-right" class="map-Right-Content">Thematic Overlay</div>
</div>
</div>
<!-- Row containing drop down controls -->
<div id = "mapDiv2" class = "map-Div">
<div id="mapLeft2" class = "map-Left">
<div dojoType="dijit.TitlePane" title="Switch Basemap" closable="false" open="false">
<div dojoType="dijit.layout.ContentPane" style="width:210px; height:150px; overflow:auto;">
<!-- Initial baseMap Gallery -->
<div id="basemapGallery" ></div>
</div>
</div>
</div>
<div id="mapCentre2" class = "map-Centre">
<div id="content-main">
<select>
<option>CSO</option>
<option>Wards</option>
</select>
</div>
</div>
</div>
<!-- Add the slider controls here -->
<div id = "mapDiv3" class = "map-Div">
<div id="mapLeft3" class = "map-Left">
<div id="slider1" class ="slider">
</div>
</div>
<div id="mapCentre3" class = "map-Centre">
<div id="slider2" class ="slider">
</div>
</div>
</div>
<!-- Button events -->
<div id = "mapDiv4" class = "map-Div">
<div id="mapLeft2" class = "map-Left">
<div id="content-left">
<button type="button">Legend</button>
</div>
</div>
<div id="mapCentre4" class = "map-Centre">
<div id="content-main">
<button type="button">Print Map</button>
</div>
</div>
<div id="mapRight4" class = "map-Right">
<button type="button">Legend</button>
</div>
</div>
</div>