-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (60 loc) · 2.94 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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-130810940-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-130810940-1');
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Ukiyo-e Map</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.4/dist/leaflet.css" integrity="sha512-puBpdR0798OZvTTbP4A8Ix/l+A4dHDD0DGqYW6RQ+9jxkRFclaxxQb/SJAWZfWAkuyeQUytO7+7N4QKrDh+drA==" crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.3.4/dist/leaflet.js" integrity="sha512-nMMmRyTVoLYqjP9hrbed9S+FzjZHW5gY1TWCHA5ckwXZBadntCNs8kEqAWdrb9O7rxbCaA4lKTIWjDXZxflOcA==" crossorigin=""></script>
<link rel="icon" href="favicon.png">
</head>
<body style="margin: 0;">
<div class="big div">
<div id="mapid" style="width: auto; height: 100vh; z-index: 1; position: relative;">
<div class="legend">
<div class="itemContainer">
<div class="itemSquare">
<div class="itemCircle" style="--r: 255; --g: 0; --b: 0;"></div>
</div>
<div class="itemText">One Hundred Famous Views of Edo - Hiroshige</div>
</div>
<div class="itemContainer">
<div class="itemSquare">
<div class="itemCircle" style="--r: 0; --g: 255; --b: 0;"></div>
</div>
<div class="itemText">Famous Views of the Sixty-odd Provinces - Hiroshige</div>
</div>
<div class="itemContainer">
<div class="itemSquare">
<div class="itemCircle" style="--r: 0; --g: 0; --b: 255;"></div>
</div>
<div class="itemText">The Fifty-three Stations of the Tōkaidō - Hiroshige</div>
</div>
<div class="itemContainer">
<div class="itemSquare">
<div class="itemCircle" style="--r: 117; --g: 52; --b: 127;"></div>
</div>
<div class="itemText">Thirty-six Views of Mount Fuji - Hokusai</div>
</div>
<div class="itemContainer">
<div class="itemSquare">
<div class="itemCircle" style="--r: 255; --g: 255; --b: 0;"></div>
</div>
<div class="itemText">Eight Views of Ōmi - Hiroshige</div>
</div>
</div>
</div>
</div>
<script src="main.js"> </script>
</body>
</html>