summaryrefslogtreecommitdiffstats
path: root/viewer/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'viewer/index.html')
-rw-r--r--viewer/index.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/viewer/index.html b/viewer/index.html
new file mode 100644
index 0000000..ca9116a
--- /dev/null
+++ b/viewer/index.html
@@ -0,0 +1,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>