kamiyama-map/public/index.html
2025-10-23 17:08:46 +09:00

59 lines
1,019 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>神山町</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/leaflet_1.9.4.css" />
<style>
html {
background: #333;
color: #eee;
}
body {
margin: 0;
}
h1 {
padding: 10px 0;
margin: 0;
text-align: center;
}
#map {
height: 100vh;
}
.leaflet-marker-icon {
background-color: rgba(255, 255, 255, .8);;
border-radius: 50%;
}
.menu {
padding: 8px;
background-color: rgba(255, 255, 255, .5);
color: #222;
font-size: 1.2rem;
border-radius: 6px;
}
.menu-category {
display: flex;
align-items: center;
cursor: pointer;
padding: 4px 8px;
border-radius: 6px;
}
.menu-category:hover {
background-color: rgba(255, 255, 255, .8);;
}
.menu-category.menu-disable {
color: #777;
}
.menu-category img {
height: 1.2rem;
margin-right: 8px;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="/leaflet_1.9.4.js"></script>
<script src="/index.js"></script>
</body>
</html>