-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 831 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>RealTimeMap</title>
<link href="./main.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="map_canvas"></div>
<div id="statusBox">
<div>random objects</div>
<input type="text" id="numbersInput" value="5" maxlength="3" />
<input type="button" id="addButton" value="add" />
<input type="button" id="removeButton" value="remove" />
<div>Status</div>
<ul></ul>
</div>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script src="./socket.io/socket.io.js"></script>
<script src="lib/jquery.js"></script>
<script src="./client.js"></script>
</body>
</html>