-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Rochester live crime map</title>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.css" />
<link rel="stylesheet" href="css/L.Control.Sidebar.css" />
<link rel="stylesheet" href="css/l.geosearch.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.ie.css" />
<![endif]-->
<link rel="stylesheet" href="css/styles.css" />
</head>
<body onload="init()">
<div class="ribbon right blue">
<a href="https://github.com/ExplosiveHippo/RocCrimeMap" target="_blank">Fork me on GitHub</a>
</div>
<div id="sidebar"></div>
<div id="map"></div>
<script src="scripts/jquery-1.10.2.js"></script>
<script src="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.js"></script>
<script src="scripts/l.control.geosearch.js"></script>
<script src="scripts/l.geosearch.provider.openstreetmap.js"></script>
<script src="scripts/shp.js"></script>
<script src="scripts/leaflet.shpfile.js"></script>
<script src="scripts/L.Control.Sidebar.js"></script>
<script src="scripts/markers.js"></script>
<script src="scripts/scripts.js"></script>
</body>
</html>