-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
98 lines (83 loc) · 4.39 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Houston Local Crime Mapping</title>
<!--
<link rel="icon" type="image/png" href="seal.png" />
<script type="text/javascript" src="data.json"></script>
-->
<meta charset="UTF-8">
<link rel="stylesheet" href="cs.css">
<link rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/leaflet.css" />
</head>
<body >
<h1 style="text-align:center;">Houston Local Crime Mapping</h1>
<div id="mapid"></div>
<!--
<img src="seal.png" alt="HPD seal" width="20%" Align=right><br />
<a href="http://findmytowedcar.com/tvrmscitizen/mainpage.aspx">Was My Car Towed?</a>
<p>You will need plate or Vin#</p> <br />
<a href="http://mycity.houstontx.gov/jails/">Jail Inquiry</a>
<p>Find out where</p><br />
<a href="http://www.houstoncit.org/test/">Homeless Outreach Team</a>
<p>Help out our transient neighbors</p> <br />
<a href="http://www.houstontx.gov/police/online_report.htm">Online Police Report</a>
<p>Make police report online</p> <br />
<img src="honor.jpg" alt="HPD Mounted Honor Guard" width="20%" Align=right><br />
<a href="https://ehpd.houstontx.gov/citizenalert/">Alert Police Online</a>
<p>Report suspicious activity</p><br />
<a href="http://www.houstontx.gov/courts/">Municipal Court Information</a>
<p>Municipal Court Information</p><br />
<button class="accordion">Station Phones / Addresses</button>
<div class="panel">
<a href="http://www.houstontx.gov/police/contact/substations.htm">Station Addresses</a> <br /><hr />
<a href="http://www.houstontx.gov/police/phone.htm">Police Phone Numbers</a> <br /><hr />
</div>
<button class="accordion">Report Information</button>
<div class="panel">
<a href="http://www.crime-stoppers.org/">Crime Stoppers</a> <br /><hr />
<a href="http://www.stophoustongangs.org/">Stop Houston Gangs</a> <br /><hr />
<a href="http://www.houstontx.gov/police/cash_for_crooks.htm">Cash for Crooks</a> <br /><hr />
<a href="http://www.houstontx.gov/police/gang/">Report Gang Activity</a> <br /><hr />
<a href="http://www.readyhoustontx.gov/iwatchhouston/">iWatch Regional Terrorism Prevention</a> <br /><hr />
</div>
<button class="accordion">Resources</button>
<div class="panel">
<a href="http://www.houstonpoliceexplorers.com/">Houston Police Explorers</a> <br /><hr />
<a href="http://www.houstonpolicefoundation.org/">Houston Police Foundation</a> <br /><hr />
<a href="http://www.hpdretired.com/">Houston Police Retired Officers Association</a> <br /><hr />
<a href="http://www.houstontx.gov/police/divisions/mental_health/">Mental Health Division</a> <br /><hr />
<a href="https://www.the100club.org">The 100 Club</a> <br /><hr />
<a href="http://www.houstontx.gov/police/fallen_officers/index.htm">Remembering the Fallen Officers</a> <br /><hr />
</div>
<button class="accordion">Complain / Commend an Officer</button>
<div class="panel">
<a href="http://www.houstontx.gov/police/contact/iad.htm">Complain</a> <br /><hr />
<a href="http://www.houstontx.gov/police/pdfs/Commendation_from_Citizen_Form.pdf">Commend an Officer</a> <br /><hr />
</div>
<button class="accordion">Services / Volunteer / Become a Police Officer</button>
<div class="panel">
<a href="http://www.houstontx.gov/police/vip/">Volunteer Program</a> <br /><hr />
<a href="http://www.houstontx.gov/police/pip/">PIP</a> <br /><hr />
<a href="http://www.houstontx.gov/police/vsu/">Victim Services</a> <br /><hr />
<a href="http://www.hpdcareer.com/">Become a Police Officer</a> <br /><hr />
</div>
<button class="accordion">Social</button>
<div class="panel">
<a id="social" href="https://www.facebook.com/Houstonpolice">Facebook</a> <br /><hr />
<a href="https://twitter.com/houstonpolice">Twitter</a> <br /><hr />
<a href="https://www.youtube.com/user/houstonpolicedept">YouTube</a> <br /><hr />
<a href="http://feeds.feedburner.com/hpdreports">Podcasts</a> <br /><hr />
<a href="http://www.hpdblog.com/">Blog</a> <br /><hr />
<a href="http://www.houstontx.gov/police/news.htm">News Releases</a> <br /><hr />
</div>
<p>Just some random text</p>
-->
<script src="http://openlayers.org/en/v3.18.2/build/ol.js" type="text/javascript"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script type="text/javascript" src="data.json"></script>
<script src="cs.js"></script>
<p>Code by Randall Baxley offered under some kind of MIT license</p>
</body>
</html>