-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (44 loc) · 2.09 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
47
48
49
50
51
52
53
54
<!doctype html>
<!--
Tangram: real-time WebGL rendering for maps
http://github.com/tangrams/tangram
http://mapzen.com/tangram
-->
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>open-transport-sim</title>
<link rel="icon" type="image/png" href="favicon.png"/>
<link rel="stylesheet" href="open-tsim/css/main.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.2.0/leaflet.css" />
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/leaflet-geocoder-mapzen/1.9.4/leaflet-geocoder-mapzen.css">
<!-- 3rd party libraries -->
<link rel="stylesheet" href="dist/tingle.min.css">
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.2.0/leaflet.js"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-geocoder-mapzen/1.9.4/leaflet-geocoder-mapzen.js">
</script> <!-- leaflet plugin for pelias search UI -->
<script defer src="open-tsim/lib/dat.gui.min.js"></script> <!-- lightweight GUI lib -->
<script defer src="open-tsim/lib/FileSaver.js"></script> <!-- used in the demo to save screenshots -->
<script defer src="open-tsim/lib/keymaster.js"></script> <!-- Keymaster handles keyboard input -->
<!-- Tangram library -->
<script src="https://unpkg.com/tangram/dist/tangram.min.js"></script>
<script defer src="dist/leaflet.motion.min.js"></script>
<!-- Game -->
<script defer type="module" src="open-tsim/main.js"></script>
<!-- Tangram demo extras -->
<script defer src="open-tsim/app/url.js"></script> <!-- URL parsing -->
<script defer src="open-tsim/app/key.js"></script> <!-- demo key setup -->
<script defer src="open-tsim/app/gui.js"></script> <!-- UI for configuring map -->
<!-- popup -->
<script src="dist/tingle.min.js"></script>
<script>
var exports = {};
</script>
</head>
<body>
<div id="map"></div>
</body>
</html>