forked from CivicTechAtlanta/mapsforus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (60 loc) · 2.1 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
<!DOCTYPE html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=yes">
<html>
<head profile="http://www.w3.org/2005/10/profile">
<link rel="icon"
type="image/png"
href="http://mollietaylor.com/favicon.png">
<title>mapsfor.us</title>
<!-- base target for links so they open outside the iFrame -->
<base target="_parent">
<!-- Leaflet -->
<link rel="stylesheet" href="plugins/leaflet/leaflet.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.ie.css" />
<![endif]-->
<script src="plugins/leaflet/leaflet.js"></script>
<!-- leaflet-providers -->
<script src="plugins/leaflet-providers/leaflet-providers.js"></script>
<!-- leaflet heat -->
<script src="plugins/Leaflet.heat/leaflet-heat.js"></script>
<!-- Tabletop -->
<script src="plugins/tabletop/src/tabletop.js"></script>
<!-- Font Awesome -->
<link rel="stylesheet" href="plugins/font-awesome-4.5.0/css/font-awesome.min.css">
<!-- Awesome Markers -->
<link rel="stylesheet" type="text/css" href="plugins/awesome-markers/leaflet.awesome-markers.css">
<script type="text/javascript" src="plugins/awesome-markers/leaflet.awesome-markers.min.js"></script>
<!-- Markercluster -->
<link rel="stylesheet" href="plugins/Leaflet.markercluster/MarkerCluster.css">
<link rel="stylesheet" href="plugins/Leaflet.markercluster/MarkerCluster.Default.css">
<script type="text/javascript" src="plugins/Leaflet.markercluster/leaflet.markercluster-src.js"></script>
<style type="text/css">
html, body{
padding: 0;
margin: 0 auto;
height: 100%;
width: 100%;
}
#map {
width: 100%;
height: 100%;
}
.intro-popup .leaflet-popup-tip-container {
width: 0;
height: 0;
}
</style>
</head>
<body>
<div id="map"></div>
<script type="text/javascript">
var map = L.map('map', {
attributionControl: false
}).setView([33.76,-84.365], 11);
</script>
<script type="text/javascript" src="constants.js"></script>
<script type="text/javascript" src="map.js"></script>
</body>
</html>