-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (62 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<title>The Bear's OSM thingy.</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/leaflet.css" />
<script src="marilyns.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.3/leaflet.js"></script>
<script src="control/Permalink.js"></script>
<script src="control/Permalink.Marker.js"></script>
<script src="control/Permalink.Layer.js"></script>
<script src="control/Permalink.Overlay.js"></script>
<script src="control/Layers.Load.js"></script>
<script src="control/leaflet.markercluster.js"></script>
<script src="control/leaflet-search.src.js"></script>
<script src="local.js"></script>
<style>
@font-face {
font-family: 'Michroma';
font-style: normal;
font-weight: 400;
src: local('Michroma'),
url(http://fonts.gstatic.com/s/michroma/v7/-1qPjVU14dEdanR8MQuQPfesZW2xOQ-xsNqO47m55DA.ttf)
format('truetype');
}
body {
font-family: 'Michroma';
padding: 0;
margin: 0;
}
html, body, #map {
height: 100%;
}
table {
font-family: 'Michroma';
border-collapse: collapse;
}
th {
color: white;
background-color: DimGrey;
}
td {
padding-right: 5px;
padding-left: 5px;
}
table, th, td {
border: 1px solid lightgrey;
}
.mycluster {
width: 40px;
height: 40px;
background-color: lightblue;
text-align: center;
font-size: 24px;
}
</style>
</head>
<body onload="initMaps()" onunload="setCookie()">
<div id="map" ></div>
</body>
</html>