-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmap.html
57 lines (56 loc) · 1.97 KB
/
map.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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>map</title>
<link rel="stylesheet" href="css/map.css" />
<link rel="stylesheet" href="css/chart.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script src="http://openlayers.org/api/OpenLayers.js"></script>
<script src="lib/js/javascript.util.js"></script>
<script src="lib/js/twitter-text.js"></script>
<script src="lib/js/d3.js"></script>
<script src="lib/js/jsts.js"></script>
<script src="js/olext.js"></script>
<script src="js/node.js"></script>
<script src="js/chart.js"></script>
<script src="js/mapd.js"></script>
<script src="js/map.js"></script>
</head>
<body>
<div id="topbar">
<form id="search" class="search">
<div id="terms" class="search">
<input id="termsInput" class="search-input" type="text" name="terms" placeholder=" What">
</div>
<div id="location" class="search">
<input id="locationInput" class="search-input" type="text" name="location" placeholder=" Where">
</div>
<button id="submit" class="search-input" type="submit">
<div id="submit-icon" class="sprites search"></div>
</button>
</form>
<div id="settings" class="settings">
<button id="gridSmall" class="settings-button" type="button" title="small grid">
<div class="sprites grid zoom75"></div>
</button>
<button id="gridMedium" class="settings-button" type="button" title="medium grid">
<div class="sprites grid"></div>
</button>
<button id="gridLarge" class="settings-button" type="button" title="large grid">
<div class="sprites grid zoom125"></div>
</button>
</div>
</div>
<div id="main">
<div id="mapview">
<div id="map"></div>
</div>
<div id="control">
<div id="chart"></div>
<div id="tweets"></div>
</div>
</div>
</body>
</html>