forked from ArlingtonCounty/Street-Closure-Mapping
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
26 lines (24 loc) · 923 Bytes
/
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
<html>
<head>
<title>Street Closure Map</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.css" />
<link rel="stylesheet" href="css/leaflet.draw.css" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<div id="map">
</div>
<script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script src="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.js"></script>
<script src="js/leaflet.draw.js"></script>
<script src="js/SliderControl.js" ></script>
<script src="js/app.js"></script>
<script>
$(document).ready(function() {
app.load();
});
</script>
</body>
</html>