forked from CodeForPittsburgh/fishfrymap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
635 lines (604 loc) · 32.6 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="initial-scale=1,user-scalable=no,maximum-scale=1,width=device-width">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#000000">
<meta name="description" content="">
<meta name="author" content="">
<title>2018 Pittsburgh Lenten Fish Fry Map</title>
<link rel="stylesheet" href="assets/css/sandstone-bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.3/leaflet.css">
<link rel="stylesheet" href="https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v1.0.0/MarkerCluster.css">
<link rel="stylesheet" href="assets/leaflet-markercluster/MarkerCluster.css">
<link rel="stylesheet" href="https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v1.0.0/MarkerCluster.Default.css">
<link rel="stylesheet" href="https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-locatecontrol/v0.43.0/L.Control.Locate.css">
<link rel="stylesheet" href="assets/leaflet-groupedlayercontrol/leaflet.groupedlayercontrol.css">
<link rel="stylesheet" href="assets/leaflet-zoomhome/leaflet.zoomhome.css">
<link rel="stylesheet" href="assets/css/app.css">
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/favicon-76.png">
<link rel="apple-touch-icon" sizes="120x120" href="assets/img/favicon-120.png">
<link rel="apple-touch-icon" sizes="152x152" href="assets/img/favicon-152.png">
<link rel="icon" sizes="196x196" href="assets/img/favicon-196.png">
<link rel="icon" type="image/x-icon" href="assets/img/favicon.ico">
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<div class="navbar-icon-container">
<a href="#" class="navbar-icon pull-right visible-xs" id="nav-btn">
<i class="fa fa-bars fa-lg white"></i>
</a>
<a href="#" class="navbar-icon pull-right visible-xs" id="sidebar-toggle-btn">
<i class="fa fa-filter fa-lg white"></i>
</a>
</div>
<a class="navbar-brand hidden-xs hidden-sm" href="#">2018 Pittsburgh Lenten Fish Fry Map</a>
<a class="navbar-brand hidden-md hidden-lg small" href="#">2018 Fish Fry Map</a>
</div>
<div class="navbar-collapse collapse">
<form class="navbar-form navbar-right" role="search">
<div class="form-group has-feedback">
<input id="searchbox" type="text" placeholder="Search All Fish Fries" class="form-control">
<span id="searchicon" class="fa fa-search form-control-feedback"></span>
</div>
</form>
<ul class="nav navbar-nav navbar-right">
<li class="hidden-xs">
<a href="#" data-toggle="collapse" data-target=".navbar-collapse.in" id="list-btn">
<i class="fa fa-filter white"></i> Filter</a>
</li>
<li>
<a href="#" data-toggle="collapse" data-target=".navbar-collapse.in" id="about-btn">
<i class="fa fa-question-circle white"></i> About</a>
</li>
<li>
<a href="https://data.wprdc.org/dataset/pittsburgh-fish-fry-map" target="_blank" data-toggle="collapse" data-target=".navbar-collapse.in" id="data-btn">
<i class="fa fa-database"></i> Data</a>
</li>
</ul>
</div>
<!--/.navbar-collapse -->
</div>
</div>
<div id="container" style="margin-top:10px;padding-bottom:10px;">
<div id="sidebar">
<div class="sidebar-wrapper">
<div class="panel panel-default" id="features">
<div class="panel-heading">
<h3 class="panel-title">Fish Fry Filter
<button type="button" class="btn btn-xs btn-default pull-right" id="sidebar-hide-btn">
<i class="fa fa-chevron-left"></i>
</button>
</h3>
</div>
<div class="panel-body">
<div class="row">
<!--div class="col-md-8">
<input type="text" class="form-control search" placeholder="Search"/>
</div-->
<div class="col-md-12">
<!--div class="col-xs-4 col-md-4"-->
<!--button type="button" class="btn btn-primary pull-right sort" data-sort="feature-name" id="sort-btn"><i class="fa fa-sort"></i> Sort</button-->
<!--button id="filterModal-btn" type="button" class="btn btn-primary pull-right" ><i class="fa fa-filter"></i> Filter</button-->
<a class="btn btn-default btn-block btn-sm" id="filterSidebar-btn" href="#" data-toggle="collapse" data-target=".navbar-collapse.in" role="button">
<i class="fa fa-filter"></i> Filter</a>
</div>
</div>
</div>
<div class="sidebar-table">
<table class="table table-hover table-condensed" id="feature-list">
<thead class="hidden">
<tr>
<th>Icon</th>
<tr>
<tr>
<th>Name</th>
<tr>
<tr>
<th>Chevron</th>
<tr>
</thead>
<tbody class="list"></tbody>
</table>
</div>
</div>
</div>
</div>
<div id="map"></div>
</div>
<div id="loading">
<div class="loading-indicator">
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-info progress-bar-full"></div>
</div>
</div>
</div>
<div class="modal" id="aboutModal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button class="close" type="button" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">About the Pittsburgh Lenten Fish Fry Map</h4>
</div>
<div class="modal-body">
<ul class="nav nav-tabs nav-justified" id="aboutTabs">
<li class="active">
<a href="#about" data-toggle="tab">
<i class="fa fa-question-circle"></i> About the project</a>
</li>
<li>
<a href="#contact" data-toggle="tab">
<i class="fa fa-envelope"></i> Contact Us</a>
</li>
<li>
<a href="#disclaimer" data-toggle="tab">
<i class="fa fa-exclamation-circle"></i> Disclaimer</a>
</li>
<li>
<a href="#build" data-toggle="tab">
<i class="fa fa-code"></i> Build With Us</a>
</li>
</ul>
<div class="tab-content" id="aboutTabsContent">
<div class="tab-pane active in" id="about">
<h3>Fish Fry Map</h3>
<h3 class="small">
<em>See the
<a href="https://twitter.com/hollenbarmer/status/845241410450329603" target="_blank">Fish Fry Map How-To</a> for a short video set to polka music that demonstrates how to
filter the Fish Fries.</em>
</h3>
<p>The Pittsburgh Lenten Fish Fry Map is the brainchild of
<a href="https://twitter.com/hollenbarmer">Hollen Barmer</a>, who has tirelessly dedicated time the past few years to inventorying the rich array of Lenten Fish Fry events that occur every spring in Western Pennsylvania.
Again this year, Code for Pittsburgh is helping.</p>
<h3>Code for Pittsburgh</h3>
<p>Code for Pittsburgh, the Pittsburgh region’s
<a href="https://www.codeforamerica.org/">Code for America Brigade</a>, makes the Pittsburgh region a better place through the use of information and technology. Despite the name, we’re not only focused on computer programming!
We are a grass-roots organization that works as a civic relationship-builder and is inclusive of different interests, skill-sets, and communities. For more information, head over to
<a href="http://www.codeforpgh.com">www.codeforpgh.com</a>.</p>
<h3>Built with Open Source Software</h3>
<p>The Fish Fry Map is open-source software, meaning that you can see how we made it and, if so inclined, use the source for you own projects. We built it with
<a href='https://github.com/bmcbride'>Bootleaf</a>, an amazing, simple, responsive template for building web mapping applications with
<a href="http://getbootstrap.com/">Bootstrap 3</a>,
<a href="http://leafletjs.com/" target="_blank">Leaflet</a>, and
<a href="http://twitter.github.io/typeahead.js/" target="_blank">typeahead.js</a>. Open source, MIT licensed, and available on
<a href="https://github.com/bmcbride/bootleaf" target="_blank">GitHub</a>.</p>
</div>
<div id="disclaimer" class="tab-pane">
<p>This map and the data and software behind it is maintained entirely by volunteers.</p>
<p>While we try our best to verify all details about Fish Fries, some details may be incomplete. Please check with the Fish Fry venue ahead of time to verify any details that are crucial to you having an enjoyable, fulfilling
Fish Fry experience.</p>
</div>
<div class="tab-pane " id="contact">
<div class="well well-sm">
<div class="row">
<div class="col-md-12">
<p>Head over to our
<a href="https://www.facebook.com/PittsburghLentenFishFryMap/">Facebook page</a> to suggest a Fish Fry, share Fish Fry photos and news, and discuss all things Fish Fry!</p>
</div>
</div>
</div>
</div>
<div id="build" class="tab-pane">
<p>If you're interested in helping build the software behind the map, head over to the project repositories and dig in:</p>
<ul>
<li>Fish Fry Form: Fish Fry Curation Tool:
<a href="https://github.com/CodeForPittsburgh/fishfryform">Repository</a> |
<a href="http://fishfry.codeforpgh.com">Site</a>
</li>
<li>Fish Fry Map (this site):
<a href="https://github.com/CodeForPittsburgh/fishfrymap"> Repository</a>
</li>
</ul>
<p>If you want to get the data used on this map and use it in your own projects, you have a couple of options:</p>
<ul>
<li>Download the data from
<a href="https://data.wprdc.org/dataset/pittsburgh-fish-fry-map">WPRDC</a>. This is periodically synced with our database.</li>
<li>Get the data as GeoJSON directly from the
<a href="http://fishfry.codeforpgh.com/api/fishfries/">Fish Fry API</a>. Please let us know if you plan on using the data on a high-traffic site, as we have limited hosting resources. :)
</li>
</ul>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
<div class="modal " id="attributionModal" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button class="close" type="button" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">
Base Map Credits
</h4>
</div>
<div class="modal-body">
<div id="attribution">
<p>"Street Map" and "Night Map" basemaps: ©
<a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, ©
<a href="https://cartodb.com/attributions">CARTO</a>
</p>
<p>"Aerial Imagery" and "Vintage" basemaps: ©
<a href="https://www.mapbox.com/about/maps/" target="_blank">Mapbox</a>, ©
<a href="http://www.openstreetmap.org/copyright" target="_blank">OpenStreetMap</a>
</span>
<span> ©
<a href="https://www.digitalglobe.com/" target="_blank">DigitalGlobe</a>
</span>
</p>
<p>"Black n' Gold" basemap: Map tiles from
<a style="color:black" href="http://stamen.com">Stamen Design</a>, under
<a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a> license. Basemap data by
<a href="http://openstreetmap.org">OpenStreetMap</a>, under
<a href="http://creativecommons.org/licenses/by-sa/3.0">CC BY SA</a> license.</p>
</div>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
<div class="modal " id="filterModal" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 class="modal-title"> Other than fish, these are the things I'm looking for in a Fish Fry: </h3>
</div>
<div class="modal-body">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<div>
<div class="checkbox">
<h4>
<label>
<input class="filter" id='lunch' type="checkbox">Open for Lunch
<i class="fa fa-cutlery" aria-hidden="true"></i>
<i class="fa fa-clock-o" aria-hidden="true"></i>
</label>
</h4>
</div>
<hr>
<div class="checkbox">
<h4>
<label>
<input class="filter" id='homemade_pierogies' type="checkbox">Homemade Pierogies !!!
</label>
</h4>
</div>
<hr>
<div class="checkbox">
<h4>
<label>
<input class="filter" id='alcohol' type="checkbox">Serves Alcohol
<i class="fa fa-beer" aria-hidden="true"></i>
</label>
</h4>
</div>
<hr>
<div class="checkbox">
<h4>
<label>
<input class="filter" id='take_out' type="checkbox">Takeout Available
<i class="fa fa-shopping-bag" aria-hidden="true"></i>
</label>
</h4>
</div>
<hr>
<div class="checkbox">
<h4>
<label>
<input class="filter" id='handicap' type="checkbox">Handicap Accessible
<i class="fa fa-wheelchair" aria-hidden="true"></i>
</label>
</h4>
</div>
<hr>
<div class="checkbox">
<h4>
<label>
<input class="filter" id='GoodFriday' type="checkbox">Open Good Friday
<i class="fa fa-shopping-bag" aria-hidden="true"></i>
</label>
</h4>
</div>
</div>
</div>
<!--div class="col-sm-6">
<div class="well">
<div class="checkbox">
<label>
<h4>
<input class="filter_type" id='venue_type_church'type="checkbox">Church
</h4>
</label>
</div>
<div class="checkbox">
<label>
<h4>
<input class="filter_type" id='venue_type_fire'type="checkbox">Fire Hall
</h4>
</label>
</div>
<div class="checkbox">
<label>
<h4>
<input class="filter_type" id='venue_type_org'type="checkbox">Community Organization
</h4>
</label>
</div>
<div class="checkbox">
<label>
<h4>
<input class="filter_type" id='venue_type_rest'type="checkbox">Restaurant
</h4>
</label>
</div>
<div class="checkbox">
<label>
<h4>
<input class="filter_type" id='venue_type_truck'type="checkbox">Food Truck
</h4>
</label>
</div>
<div class="checkbox">
<label>
<h4>
<input class="filter_type" id='venue_type_other'type="checkbox">Other
</h4>
</label>
</div>
</div>
</div-->
</div>
<hr>
<div class="row">
<div class="col-sm-8 col-sm-offset-2 bg-info">
<div class="checkbox">
<label>
<input class="filter" id='publish' type="checkbox">Show only those verified for 2018.
</label>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<h4>
<small>Note that while we try our best to verify all details about Fish Fries, some details may
be incomplete. Please check with the Fish Fry venue ahead of time and rely on the above
filters at your own discretion. </small>
</h4>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Find those Fish Fries!</button>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
<!-- FISH FRY MODAL (wrapper for handlebars template) -->
<div class="modal " id="featureModal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-lg">
<div class="modal-content" id="feature-info">
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->
<!-- modal info template used by Handlebars -->
<script id="info-template" type="text/x-handlebars-template">
<div class="modal-header">
<div id="feature-info-header">
<div class="row">
<div class="col-xs-offset-11 col-xs-1">
<button class="close" type="button" data-dismiss="modal" aria-hidden="true">×</button>
</div>
</div>
<div class="row">
<div class="col-md-9">
<h3 class="modal-title">
<span id="feature-title">{{venue_name}}</span>
</h3>
</div>
<div class="col-md-3">
<h3 class="modal-title text-right hidden-sm hidden-xs">
<small>{{venue_type}}</small>
</h3>
<h3 class="modal-title hidden-md hidden-lg">
<small>{{venue_type}}</small>
</h3>
</div>
</div>
<div class="row">
<div class="col-md-9">
<h4 class="modal-title">
<span id="feature-subtitle">{{venue_address}}</span> </h4>
</div>
<div class="col-md-3">
<h4 class="modal-title text-right">
<small>
<a href="https://www.google.com/maps/dir//{{venue_address}}" target="_blank">Get directions →</a>
</small>
</h4>
</div>
</div>
</div>
</div>
<div class="modal-body">
{{#if notify}}
<div class="row">
<div class="col-sm-12">
<div class="alert alert-danger" role="alert">
<h3>{{{notify}}}</h3>
</div>
</div>
</div>
{{/if}}
<div class="row">
<div class="col-sm-7">
<div class="row">
<div class="col-sm-5">
<h2>Menu</h2>
</div>
<div class="col-sm-7 text-right">
<h2>
<small>
{{#if menu_url}}
<a class='url-break' href='{{menu_url}}' target='_blank'>View menu/listing</a>
{{/if}}
</small>
</h2>
</div>
</div>
<div class="row">
<div class="col-sm-12">
{{#if menu_text}}
<p>{{menu_text}}</p>
{{else}}
<p class="small text-muted">Nothing here? We may not have gotten around to recording this information yet. Check with the venue for their menu.</p>
{{/if}}
</div>
</div>
</div>
<div class="col-sm-5">
{{#if events_today}}
<h2>Open Today: {{#each events_today}}
<span>{{this}} </span> {{/each}}
</h2>
<h3>Upcoming Dates</h3>
{{else}}
<h3>Upcoming Date(s)</h3>
{{/if}}
<ul class="list-unstyled">
{{#if events_future}} {{#each events_future}}
<li>
<small>{{this}}</small>
</li>
{{/each}} {{else}}
<p class="small text-muted">Nothing here? We may not have gotten around to recording this information yet. If it's not in the notes below, check with the venue for dates/times.</p>
{{/if}}
</ul>
</div>
</div>
<div class="row">
<div class="col-sm-1">
<h4>Notes</h4>
</div>
<div class="col-sm-11">
{{#if etc}}
<p>{{etc}}</p>
{{/if}} {{#if venue_notes}}
<p>{{venue_notes}}</p>
{{/if}}
</div>
</div>
<br>
<div class="row">
<div class="col-sm-12">
<table class='table table-condensed well'>
<tr>
<th>Homemade Pierogies?</th>
<td>{{homemade_pierogies}}</td>
</tr>
<tr>
<th>Alcohol Served?</th>
<td>{{alcohol}}</td>
</tr>
<tr>
<th>Lunch Provided?</th>
<td>{{lunch}}</td>
</tr>
<tr>
<th>Take-out Available?</th>
<td>{{take_out}}</td>
</tr>
<tr>
<th>Handicap Accessible?</th>
<td>{{handicap}}</td>
</tr>
<tr>
<th>Open Good Friday?</th>
<td>{{GoodFriday}}</td>
</tr>
<table>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<h4>Contact</h4>
<table class='table table-condensed well'>
<tr>
<th>Phone</th>
<td>{{phone}}</td>
</tr>
<tr>
<th>Venue Website</th>
<td>
{{#if website}}
<a class='url-break' href='{{website}}' target='_blank'>Venue Website</a> {{/if}}
</td>
</tr>
<tr>
<th>Email</th>
<td>
<a class='url-break' href='mailto:{{email}}' target='_blank'>{{email}}</a>
</td>
</tr>
<table>
</div>
</div>
</div>
<div class="modal-footer">
<p class="small text-muted">Do you have info on this Fish Fry that we don't? Send us a message on our
<a href="https://www.facebook.com/PittsburghLentenFishFryMap/" target="_blank">Facebook</a> page.</p>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</script>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typeahead.js/0.10.5/typeahead.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/3.0.3/handlebars.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/list.js/1.1.1/list.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.3/leaflet.js"></script>
<script src="https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-markercluster/v1.0.0/leaflet.markercluster.js"></script>
<script src="https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-locatecontrol/v0.43.0/L.Control.Locate.min.js"></script>
<script src="assets/leaflet-groupedlayercontrol/leaflet.groupedlayercontrol.js"></script>
<script src="assets/leaflet-geojsonfilter/leaflet.geojsonfilter.js"></script>
<script src="assets/leaflet-zoomhome/leaflet.zoomhome.min.js"></script>
<script src="assets/js/moment.min.js"></script>
<script src="assets/js/app.js"></script>
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments);
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m);
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-93928848-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>