forked from tangrams/tangram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·55 lines (46 loc) · 2.04 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
55
<!doctype html>
<!--
Tangram: real-time WebGL rendering for OpenStreetMap
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>Tangram: WebGL for OpenStreetMap</title>
<link rel="stylesheet" href="demos/css/main.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.2.0/leaflet.css" />
</head>
<body>
<div id="map"></div>
<!-- 3rd party libraries -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.2.0/leaflet.js"></script>
<script src="demos/lib/dat.gui.min.js"></script> <!-- lightweight GUI lib -->
<script src="demos/lib/rStats.js"></script> <!-- rStats provides WebGL performance profiling-->
<script src="demos/lib/rStats.extras.js"></script>
<script src="demos/lib/FileSaver.js"></script> <!-- used in the demo to save screenshots -->
<script src="demos/lib/keymaster.js"></script> <!-- Keymaster handles keyboard input -->
<!-- Main tangram library -->
<script src="dist/tangram.debug.js"></script>
<!-- Tangram demo code -->
<script src="demos/main.js"></script>
<!-- Tangram demo extras -->
<script src="demos/app/url.js"></script> <!-- URL parsing -->
<script src="demos/app/key.js"></script> <!-- demo key setup -->
<script src="demos/app/gui.js"></script> <!-- UI for configuring map -->
<!-- <script src="demos/app/rStats.js"></script> --> <!-- WebGL stats for debugging -->
<!-- Mapzen extras (search/share UI) -->
<script src='//mapzen.com/common/ui/mapzen-ui.min.js'></script>
<!-- Mapzen analytics -->
<script>
MPZN.bug({
name: 'Tangram',
link: 'https://mapzen.com/projects/tangram',
tweet: 'Tangram: real-time WebGL maps from @mapzen',
repo: 'https://github.com/tangrams/tangram'
});
</script>
</body>
</html>