summaryrefslogtreecommitdiffstats
path: root/viewer/index.html
blob: ca9116a835bb334decd175b606651263bc15e6fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!doctype html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>MinedMap</title>
    <link rel="stylesheet" href="leaflet-0.8-dev/leaflet.css" />
    <script src="leaflet-0.8-dev/leaflet.js"></script>
    <script src="MinedMap.js"></script>

    <style type="text/css">
      #map {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
      }

      body, .leaflet-container {
        background: #333;
      }
    </style>
  </head>
  <body>
    <div id="map"></div>
    <script type="text/javascript">
      createMap();
    </script>
  </body>
</html>