forked from mcyspolihack/yo_map_mapbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (43 loc) · 2.44 KB
/
index.html
File metadata and controls
51 lines (43 loc) · 2.44 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title>Youth Service Inventory Map</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.18.0/mapbox-gl.css' rel='stylesheet' />
<link rel='stylesheet' href='https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/v1.1.0/mapbox-gl-geocoder.css' type='text/css' />
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<nav id='filter-group' class='filter-group'></nav>
<div id='map'></div>
<nav id='filter-group' class='filter-group'></nav>
<div id='state-legend' class='legend'>
<h3>Youth Opportunities Programs</h3>
<div><span style='background-color: #fbb03b'></span>Youth Opportunities Fund </div>
<div><span style='background-color: #4F81BD'></span>Gang Prevention and Intervention Program</div>
<div><span style='background-color: #9BBB59'></span>Youth Mentorship Program</div>
<div><span style='background-color: #8064A2'></span>Restorative Justice and Conflict Mediation Program</div>
<div><span style='background-color: #F79646'></span>Summer and After-School Youth in Policing Initiative</div>
<div><span style='background-color: #F79646'></span>Summer Youth in Policing Initiative</div>
<div><span style='background-color: #F79646'></span>After-School Youth in Policing Initiative</div>
<div><span style='background-color: #95B3D7'></span>Stop Now and Plan Program</div>
<div><span style='background-color: #4BACC6'></span>Youth Outreach Worker Program</div>
</div>
<!---
<div id='sidebar'>
<h1></h1>
<h2></h2>
<div id="tooltip-name"></div>
<div id='tooltip'></div>
</div>
-->
</div> <!-- END .wrapper -->
<pre id='features'></pre>
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.18.0/mapbox-gl.js'></script>
<script src='https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/v1.1.0/mapbox-gl-geocoder.js'></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.js"></script>
<script src="//api.tiles.mapbox.com/mapbox.js/plugins/turf/v3.0.11/turf.min.js"></script>
<script src='js/mapinit.js'></script>
</body>
</html>