-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
33 lines (23 loc) · 838 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<title>NodeJS Stream using Server Sent Event Stream</title>
<meta charset="utf-8" />
<link rel="shortcut icon" href="/a/i/favicon.png" type="image/png" />
<title> Tweet Map </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="libs/dist/leaflet.css"/>
<link rel="stylesheet" href="style.css"/>
<style>
</style>
</head>
<body>
<div id="map"></div>
<ol id="info">
Real-Time Geolocated Tweets
</ol>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="libs/dist/leaflet.js"></script>
<script type="text/javascript" src="main.js"></script>
</body>
</html>