-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
76 lines (61 loc) · 3.38 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
64
65
66
67
68
69
70
71
72
73
74
75
76
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Bay Area Transit Map: A map of the service areas of all 37 Bay Area transit agencies</title>
<meta property="og:url" content="https://bayareatransitmap.com/"/>
<meta property="og:type" content="website"/>
<meta property="og:title" content="Bay Area Transit Map"/>
<meta property="og:description" content="A map of the service areas of all 37 Bay Area transit agencies"/>
<meta property="og:image" content="https://bayareatransitmap.com/images/bayareatransitmap.png"/>
<meta property="og:image:alt" content="Bay Area Transit Map"/>
<meta property="og:image:width" content="1200"/>
<meta property="og:image:height" content="1200"/>
<meta property="og:locale" content="en_US"/>
<meta property="og:site_name" content="Bay Area Transit Map"/>
<meta name="robots" content="index,follow"/>
<meta name="googlebot" content="index,follow"/>
<meta name="description" content="A map of the service areas of all 37 Bay Area transit agencies"/>
<link rel="apple-touch-icon" sizes="180x180" href="/images/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicons/favicon-16x16.png">
<link rel="manifest" href="/images/favicons/site.webmanifest">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/css/bootstrap.min.css">
<script src='https://unpkg.com/maplibre-gl/dist/maplibre-gl.js'></script>
<link href='https://unpkg.com/maplibre-gl/dist/maplibre-gl.css' rel='stylesheet' />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/c640b06c81.js" crossorigin="anonymous"></script>
<script>
window.va = window.va || function () { (window.vaq = window.vaq || []).push(arguments); };
</script>
<script defer src="/_vercel/insights/script.js"></script>
</head>
<body>
<div class="d-block d-lg-flex flex-row-reverse h-100">
<div id="map" class="map"></div>
<div class="panel d-flex flex-column justify-content-between">
<div>
<h1 class="panel-title mb-0">Bay Area Transit Map</h1>
<div class="panel-content">
<p>Service areas of the Bay Area's 37 transit agencies</p>
<div id="map-legend"></div>
<p class="mt-5 text-center">Does the Bay Area have enough transit agencies?<br><a class="btn btn-blue mt-2" href="https://www.spur.org/publications/spur-report/2020-12-01/regional-transit-coordinator-bay-area"><i class="fas fa-book"></i> Read SPUR's report</a></p>
</div>
</div>
<div class="mt-3">
<div class="panel-content">
<div class="note">
<i class="fas fa-info-circle fa-3x"></i>
<div class="ml-2">Service area calculated using a 1km buffer around every stop defined in each agency's <a href="https://gtfs.org">GTFS</a>.</div>
</div>
<div class="footer-credits mt-4">Developed by <a href="https://blinktag.com" target="_blank">BlinkTag Inc</a></div>
</div>
</div>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>