-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 911 Bytes
/
index.html
File metadata and controls
35 lines (32 loc) · 911 Bytes
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
<html>
<head>
<title>WallMapper</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript" src="http://github.com/jashkenas/coffee-script/raw/master/extras/coffee-script.js"></script>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=true"></script>
<script type="text/coffeescript" src="app.coffee"></script>
<style>
#wm_viewer, #wm_result {
width: 640px;
height: 640px;
float: left;
margin: 10px;
border: 1px solid gray;
}
#wm_result {
font-family: monospace;
white-space: pre;
}
</style>
</head>
<body>
<div id="wm_controls">
</div>
<div id="wm_viewer">
<div id="wm_map">
</div>
</div>
<div id="wm_result">
</div>
</body>
</html>