forked from HarlanH/code-for-dc-edu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathneighborhood.html
38 lines (34 loc) · 1.51 KB
/
neighborhood.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
---
layout: default
title: Neighborhoods
---
<div class="container-fluid">
<div class="row-fluid">
<div class="span4">
<b>Click a neighborhood to see where its students attend school.
<div>Use the buttons to hide various school types.
</div></b>
<p>
<div class="btn-group" data-toggle="buttons-checkbox">
<button name="schoolinfo" value="charter" id="charter" type="button" class="btn btn-primary active">Charter</button>
<button name="schoolinfo" value="public" id="public" type="button" class="btn btn-primary active">
Public</button>
</div>
<div class="btn-group" data-toggle="buttons-checkbox">
<button name="schoolinfo" value="elementary" id="elementary" type="button" class="btn btn-primary active">Elementary</button>
<button name="schoolinfo" value="middle" id="middle" type="button" class="btn btn-primary active" >Middle</button>
<button name="schoolinfo" value="high" id="high" type="button" class="btn btn-primary active" >High</button>
</div>
</p>
</div>
<div class="span8">
<!-- http://stackoverflow.com/questions/11316383/bootstrap-hero-unit-height-leaflet -->
<div id="neighmap" style="height: 600px"></div>
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
</div>
</div>
</div>
</div>
<script src="neighborhood-postload.js"></script>