forked from codefordayton/mapping_workshop
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
44 lines (35 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<!-- Leaflet -->
<link rel="stylesheet" href="../../lib/leaflet-0.7/leaflet.css" />
<script src="../../lib/leaflet-0.7/leaflet.js"></script>
<!-- Font Awesome -->
<link rel="stylesheet" href="../../lib/fontawesome/css/font-awesome.css" />
<!-- Leaflet.MarkerCluster -->
<link rel="stylesheet" href="../../lib/leaflet.markercluster/MarkerCluster.css" />
<link rel="stylesheet" href="../../lib/leaflet.markercluster/MarkerCluster.Default.css" />
<script src="../../lib/leaflet.markercluster/leaflet.markercluster-src.js"></script>
<!-- Leaflet Awesome Markers -->
<link rel="stylesheet" href="../../lib/leaflet.awesomemarkers/leaflet.awesome-markers.css" />
<script src="../../lib/leaflet.awesomemarkers/leaflet.awesome-markers.js"></script>
<!-- jQuery -->
<script src="../../lib/jquery-3.1/jquery-3.1.0.min.js"></script>
<!-- Map -->
<style>
body, html {
height: 100%;
margin: 0;
padding: 0;
}
.map {
height: 100%;
}
</style>
<script src="map.js"></script>
</head>
<body>
<!-- Here's the container where the map will be rendered to -->
<div id="map" class="map"></div>
</body>
</html>