-
Notifications
You must be signed in to change notification settings - Fork 91
/
index.html
34 lines (34 loc) · 1009 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
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<title>Leaflet web map with Google Sheets</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/leaflet.css"/>
<link rel="stylesheet" href="css/font-awesome.min.css"/>
<link rel="stylesheet" href="css/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="css/leaflet-sidebar.css"/>
<style>
body {
padding: 0;
margin: 0;
}
html, body, #map {
height: 100%;
width: 100%;
}
#sidebar-content, #sidebar-title {
word-break: break-word;
margin-right: 40px;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="js/leaflet.js"></script>
<script src="js/leaflet-sidebar.js"></script>
<script src="js/leaflet.awesome-markers.min.js"></script>
<script src="js/papaparse.min.js"></script>
<script src="main.js"></script>
</body>
</html>