Newer
Older
2024-Ikarashi / game.html
@IkarashiAito IkarashiAito on 23 Jan 2025 921 bytes Update game.html
<!DOCTYPE html>
<html lang="ja">
<head>
    <title>マップ: 落とし物探し</title>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
    <script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
    <style type="text/css">
        div#mymap {
            width: 90vw;
            height: 80vh;
            margin: 0 auto;
        }
        #info {
            background: pink;
        }
        .popup-content img {
            max-width: 200px;
            border-radius: 8px;
            margin-bottom: 10px;
        }
        .popup-content input {
            margin-top: 10px;
        }
    </style>
</head>

<body>
    <h1>落とし物を見つけに行こう</h1>
    <div id="mymap"></div>
    <script type="text/javascript" src="game.js" charset="utf-8"></script>
</body>
</html>