Project

General

Profile

1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>Google Maps</title>
5
<meta http-equiv='Content-Type' content='text/html'; charset='utf-8'>
6
<script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=false"></script>
7
<script type="text/javascript" src="js/jquery-1.4.1.min.js"></script>
8
<script type="text/javascript" src="js/markers.js"></script>
9
<style>
10
	.facet{
11
		margin-left:20px;
12
		height:100%;
13
	}
14
	.header{
15
		margin-bottom:3px;
16
	}
17
	.header span{
18
		font-family: Arial, Helvetica, sans-serif;
19
		font-size: 13px;
20
		font-weight: bold;
21
	}
22

    
23
	.header .small{
24
		font-size: 11px;
25
    		margin: 0 0 20px;
26
		font-weight:normal;
27
	}
28

    
29
	html,body{
30
		width:100%;
31
		font-size:13px;
32

    
33
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
34
	}
35
	table{
36
		//width:900px;
37
		width:99%;
38
		height:150px;
39
		margin-bottom:10px;
40
	}
41
	td{
42
		width:30%;
43
		height:100%;
44
	}
45
	.checkedcountries p{
46
		margin:0px;
47
	}
48

    
49
	.tooltip-header{
50
		line-height:150%;
51
		color: #444444;
52
		margin:0px;
53
		padding:0px;
54
		font-size:14px;
55
		font-weight:bold;
56
		text-align:left;
57
	}
58
	.tooltip-body{
59
		line-height:150%;
60
		color: #444444;
61
		margin:0px;
62
		padding:0px;
63
		font-size:13px;
64
		text-align:left;
65
	}
66

    
67
</style>
68

    
69
</head>
70
<body>
71
<table><tr>
72

    
73
<td><div class='facet' id="types">
74
	<div class="header">
75
		<span>Datasource type</span>
76
	</div>
77
</div></td>
78

    
79
<td><div class='facet' id='compatibility'>
80
	<div class="header">
81
		<span>Compatibility</span>
82
	</div>
83

    
84
</div></td>
85

    
86
<td><div class="facet" id="countrycol" style="display:none">
87
	<div class="header">
88
		<span>Country</span>&nbsp<span class='small'>[select <a id='call' href="#">all</a>|<a id='cnone' href="#">none</a> ]</span>
89
	</div>
90
	<div class="checkedcountries"><p></p></div>
91
	<div id="countries" style="height:100px;width:200px;overflow:auto;padding:2px;border:solid 0.5px grey">
92
	</div>
93
</div></td>
94

    
95
</tr></table>
96
<div id="map" style="float:left"></div>
97
</body>
98
</html>
(11-11/28)