-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
110 lines (84 loc) · 3.64 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<!--
Hey ! Whats good !
This site scrapes from the list, that is, http://www.foopee.com/punk/the-list/
The source of the project can be found here: https://github.com/metasyn/sfpunkshowmap
Made by metasyn, in, you guessed it, SF.
@metasyn
http://metasyn.pw
-->
<title>SF SHOWS</title>
<!-- Initalize viewport -->
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<!-- Deps -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-alpha1/jquery.min.js'></script>
<script src='https://api.mapbox.com/mapbox.js/v2.2.3/mapbox.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/mustache.js/2.2.1/mustache.min.js'></script>
<!-- Modal/Vex -->
<script src='js/vex.combined.min.js'></script>
<link href='css/vex.min.css' rel='stylesheet'></link>
<link href='css/vex-theme-flat-attack.min.css' rel='stylesheet'></link>
<!-- Main -->
<script src='js/mapper.js'></script>
<!-- MarkerCluster -->
<script src='https://api.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/leaflet.markercluster.js'></script>
<link href='https://api.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/MarkerCluster.css' rel='stylesheet' />
<link href='https://api.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v0.4.0/MarkerCluster.Default.css' rel='stylesheet' />
<!-- Locate -->
<script src='https://api.mapbox.com/mapbox.js/plugins/leaflet-locatecontrol/v0.43.0/L.Control.Locate.min.js'></script>
<link href='https://api.mapbox.com/mapbox.js/plugins/leaflet-locatecontrol/v0.43.0/L.Control.Locate.mapbox.css' rel='stylesheet' />
<!--[if lt IE 9]>
<link href='https://api.mapbox.com/mapbox.js/plugins/leaflet-locatecontrol/v0.43.0/L.Control.Locate.ie.css' rel='stylesheet' />
<![endif]-->
<link href='https://api.mapbox.com/mapbox.js/plugins/leaflet-locatecontrol/v0.43.0/css/font-awesome.min.css' rel='stylesheet' />
<!-- CSS -->
<link href='https://api.mapbox.com/mapbox.js/v2.2.3/mapbox.css' rel='stylesheet' />
<link href='css/stylish.css' rel='stylesheet' />
</head>
<body>
<div id='map'></div>
<div id='panel'>
<div id='date-selector-container'>
<button onclick="toggleDate('today')">today</button>
<button onclick="toggleDate('tomorrow')">tomorrow</button>
<button onclick="toggleDate('all')">all</button>
<br>
<form id='date-selector'></form>
</div>
<pre id='coordinates' class='ui-coordinates'>
<p>Details of on-screen shows:</p>
</pre>
</div>
<div id='q' class='noselect' onclick="modalPop()">
?
</div>
<div id="modal-template">
<h1>SF Show Map</h1>
<p>
You can select which dates you are interested in on the bottom. <br>
The box below will give you details of the on-screen shows. <br>
Clicking on a venue with a number will split out the individual shows. <br>
Clicking on one will give you details of the lineup and cost, if known. <br>
</p>
<h3>Legend</h3>
<pre>
* recommendable shows
a/a all ages
$ will probably sell out
@ pit warning
^ under 21 must buy drink tickets
# no ins/outs
</pre>
<p>
All of this data comes from <a href="http://www.foopee.com/punk/the-list/">The List</a>. <br>
You might've noticed that some shows are missing. </br>
I've only added a subset of venues so far. </br>
All the ones I haven't added are on Alcatraz ^^</br>
Please report any bugs on <a href="https://github.com/metasyn/sfpunkshowmap/issues">Github</a>
</p>
</div>
</body>
</html>