forked from CivicTechAtlanta/asset-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (58 loc) · 2.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
<!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">
<title>South Downtown</title>
<link rel="icon"
type="image/png"
href="http://mollietaylor.com/favicon.png">
<!-- Leaflet -->
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.ie.css" />
<![endif]-->
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<!-- Leaflet Shapefile -->
<script type="text/javascript" src="plugins/leaflet-shapefile/leaflet.shpfile.js"></script>
<script type="text/javascript" src="plugins/leaflet-shapefile/shp.min.js"></script>
<!-- Omnivore -->
<script src='//api.tiles.mapbox.com/mapbox.js/plugins/leaflet-omnivore/v0.2.0/leaflet-omnivore.min.js'></script>
<!-- Font Awesome -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.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>
<!-- jQuery -->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script type="text/javascript" src="data/bike-racks.js"></script>
<script type="text/javascript" src="data/national-register.js"></script>
<script type="text/javascript" src="data/art.js"></script>
<script type="text/javascript" src="data/vacant.js"></script>
<script type="text/javascript" src="data/community-assets.js"></script>
<script type="text/javascript" src="data/south-downtown.js"></script>
<script type="text/javascript" src="data/historical-markers.js"></script>
<script type="text/javascript" src="data/landmarks.js"></script>
<script type="text/javascript" src="data/marta-stations.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" src="map.js"></script>
</body>
</html>