-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>San Francisco Municipal Gondola Network</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<style>
html, body { margin: 0; padding: 0; }
#map { height: 100%; width: 100%; position: absolute; }
</style>
</head>
<body>
<div id="map"></div>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="https://www.nextzen.org/tangram/tangram.min.js"></script>
<script>
var map = L.map('map');
var layer = Tangram.leafletLayer({
scene: 'gondola.yaml',
attribution: '<a href="https://wwwnextzen.org/tangram" target="_blank">Nextzen</a> | © OSM contributors | @<a href="https://github.com/burritojustice/sf-gondola-map">burritojustice</a>'
});
layer.addTo(map);
map.setView([37.7694, -122.4570], 13.4208);
</script>
</body>
</html>