forked from tangrams/tangram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·41 lines (36 loc) · 1.43 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
<!doctype html>
<!--
Tangram: real-time WebGL rendering for OpenStreetMap
http://github.com/tangrams/tangram
http://mapzen.com
-->
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Vector map</title>
<link rel="stylesheet" href="demos/css/main.css" />
<link rel="stylesheet" href="demos/lib/leaflet/leaflet.css" />
</head>
<body>
<div id="map"></div>
<!-- Start of 3rd party libraries -->
<script src="demos/lib/leaflet/leaflet.js"></script>
<!-- A lightweight graphical user interface for changing variables in JavaScript. -->
<script src="demos/lib/dat.gui.min.js"></script>
<!-- rStats provides a comprehensive library for doing performance-->
<script src="demos/lib/rStats.js"></script>
<script src="demos/lib/rStats.extras.js"></script>
<!-- FileSaver.js implements the HTML5 W3C saveAs() -->
<script src="demos/lib/FileSaver.js"></script>
<!-- End of 3rd party libraries -->
<!-- Main tangram library -->
<script src="dist/tangram.debug.js"></script>
<!-- Demo module -->
<script src="demos/main.js"></script>
</body>
<!-- Adding a script block to post message to the parent container (think iframed demos) -->
<script type="text/javascript">
window.addEventListener("hashchange",function(){parent.postMessage(window.location.hash, "*")});
</script>
</html>