initial commit

This commit is contained in:
2024-10-20 23:07:17 +02:00
commit 56bd7c6111
45 changed files with 1058 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive Tensei Shitara Slime Datta Ken Map</title>
<meta name="description" content="Interactive map of the central world of Tensei Shitara Slime Datta Ken (That Time I Got Reincarnated as a Slime)">
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<svg id="map" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2641 2035"></svg>
<div id="tooltip" class="tooltip"></div>
<div class="legend">
<h1>Interactive Map of the Magic Continent</h1>
<div class="border"></div>
</div>
<script src="js/locations/nations.js"></script>
<script src="js/locations/capitals.js"></script>
<script src="js/locations/pois.js"></script>
<script src="js/mapBuilder.js"></script>
<script src="js/tooltip.js"></script>
</body>
</html>