-
Notifications
You must be signed in to change notification settings - Fork 53
/
index.html
executable file
·55 lines (41 loc) · 1.17 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
-->
<html>
<head>
<title>Simple demo – Tangram</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<style>
body {
margin: 0px;
border: 0px;
padding: 0px;
}
#map {
height: 100%;
width: 100%;
position: absolute;
}
</style>
</head>
<body>
<div id="map"></div>
<!-- leaflet -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<!-- Main tangram library -->
<script src="https://unpkg.com/tangram/dist/tangram.min.js"></script>
<!-- Demo setup -->
<script>
var map = L.map('map');
var tangramLayer = Tangram.leafletLayer({
scene: 'scene.yaml',
attribution: '<a href="https://mapzen.com/tangram" target="_blank">Tangram</a> | © OSM contributors'
});
tangramLayer.addTo(map);
map.setView([40.70531887544228, -74.00976419448853], 15);
</script>
</body>
</html>