-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
executable file
·63 lines (53 loc) · 1.65 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
56
57
58
59
60
61
62
63
<!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">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Gui demo - Tangram</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.0-rc.3/leaflet.css" />
<style>
body {
margin: 0px;
border: 0px;
padding: 0px;
}
#map {
background: rgba(0, 0, 0, 0);
}
.label {
width: 200px;
margin-left: -100px;
position: absolute;
z-index: 10;
text-align: center;
font-family: Helvetica, sans-serif;
font-size: 12px;
}
.labelInner {
padding: 2px;
background: white;
opacity: 0.75;
}
</style>
</head>
<body>
<div id="map"></div>
<!-- Start of 3rd party libraries -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.0-rc.3/leaflet.js"></script>
<!-- bog-standard leaflet URL hash -->
<script src="lib/leaflet-hash.js"></script>
<!-- A lightweight graphical user interface for changing variables in JavaScript. -->
<script src="lib/dat.gui.min.js"></script>
<!-- End of 3rd party libraries -->
<!-- Main tangram library -->
<script src="https://unpkg.com/tangram/dist/tangram.debug.js"></script>
<!-- Demo module -->
<script src="main.js"></script>
</body>
</html>