-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
31 lines (31 loc) · 928 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
<html>
<head>
<title>My first Three.js app</title>
<meta charset="utf-8">
</head>
<body>
<script>
var modules = {};
var processed = {};
processed.ways = [];
processed.nodes = [];
processed.relations = [];
</script>
<script src="funcs.js"></script>
<script src="three.min.js"></script>
<script src="OrbitControls.js"></script>
<script src="TrackballControls.js"></script>
<script src="helvetiker_bold.typeface.js"></script>
<script src="liberation_sans_regular.typeface.js"></script>
<script src="threefuncs.js"></script>
<script src="buildings.js"></script>
<script src="ways.js"></script>
<script src="waynames.js"></script>
<script src="wayfootways.js"></script>
<script src="wayborders.js"></script>
<script src="wayshapes.js"></script>
<script src="app.js"></script>
</body>
<label>Choose an Open Street Map xml tile</label>
<input type="file" id="input" onchange="handleFiles(this.files)">
</html>