-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (38 loc) · 1.62 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- HTML Document for tweetsmap - check as valid HTML5 (validator.w3.org/) -->
<title>Node.js Twitter Search</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="Author" content="Chris Finch">
<!-- ios device width tag -->
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- Scripts -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?key=AIzaSyBqcQ6gI4cfPLNZC-ebQGGGOctTuKNXncw&sensor=false"></script>
<script type="text/javascript" src="/socket.io/socket.io.js"></script>
<script type="text/javascript" src="/js/infobubble-compiled.js"></script>
<script type="text/javascript" src="/js/globalTweets.js"></script>
<!-- Styles -->
<link href='http://fonts.googleapis.com/css?family=Droid+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="/css/reset.css">
<link rel="stylesheet" type="text/css" href="/css/style.css">
</head>
<body>
<div id="mapContainer">
<div id="map_canvas" style="width: 100%; height: 100%"></div>
</div>
<div id="tweets">
<span id="handle">« Show Feed</span>
<ul id="tweetsList">
</ul>
</div>
<div id="stats"></div>
<div id="termForm">
<form action="#" id="termFormForm">
<input type="text" id="searchTerm" class="text" value="#nowplaying" data-val="#nowplaying" />
<input type="submit" id="submit" value="Search" />
</form>
</div>
</body>
</html>