<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <title>リアルタイム地図</title> <link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css" /> </head> <body> <h1>リアルタイム地図表示</h1> <button onclick="usePolling()">Polling</button> <button onclick="useWebSocket()">WebSocket</button> <div id="map"></div> <script src="https://unpkg.com/leaflet/dist/leaflet.js"></script> <script> window.map = L.map('map').setView([38.728, 139.821], 15); L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { attribution: '© OpenStreetMap contributors' }).addTo(window.map); window.marker = L.marker([38.728, 139.821]).addTo(window.map); </script> <script src="polling.js"></script> <script src="websocket.js"></script> </body> </html>