forked from dmuthami/ilex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
div_old.html
94 lines (80 loc) · 1.96 KB
/
div_old.html
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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.map-Div {
position:relative;
float:left;
clear:left;
border:1px solid #bbb;
margin-top: 5px;
margin-right: 0px;
margin-bottom: 3px;
margin-left: 0px;
}
.map-Left {
position:relative;
float:left;
padding : 3px;
color : #000000;
}
.map-Centre {
position:relative;
float:left;
margin-left :0px;
margin-top :0px;
color : #000000;
padding : 3px;
}
.map-Right {
position:relative;
float:left;
padding-left : 10px;
z-index : 3;
color : #000000;
padding : 3px;
}
</style>
<!-- Load jQuery and jQuery UI via Google AJAX Libraries API -->
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script></script>
</head>
<body>
<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">Thematic Overlay</div>
</div>
</div>
<div id = "mapDiv2" class = "map-Div">
<div id="mapLeft2" class = "map-Left">
<div id="content-left">
<select>
<option>Google Maps</option>
<option>Bing Maps</option>
<option>Open Street Maps</option>
</select>
</div>
</div>
<div id="mapCentre2" class = "map-Centre">
<div id="content-main">
<select>
<option>CSO</option>
<option>Wards</option>
</select>
</div>
</div>
<div id="mapRight2" class = "map-Right">
<div id="content-right">
<select>
<option>Kanyau</option>
<option>Cat</option>
<option>Paka</option>
</select>
</div>
</div>
</div>
</body>
</html>