Newer
Older
2025-shino / loc-chase.html
<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="utf-8">
  <title>GNSS宝探し</title>

  <!-- Leaflet(CDN) -->
  <link
    rel="stylesheet"
    href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
  >
  <script
    src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
    defer
  ></script>

  <!-- 自分のJS -->
  <script src="loc-chase.js" defer></script>

  <style>
    #locationmap {
      width: 90vw;
      height: 75vw;
      margin: auto;
    }
  </style>
</head>

<body>
  <h1>たからさがし <span id="title"></span></h1>

  <p>
    <button id="start" type="button">START</button>
    <button id="stop" type="button">STOP</button>
    <a href="loc-chase.js">src</a>
  </p>

  <div id="locationmap"></div>
</body>
</html>