From 151e1e5ac01a3c2b06e5aa75b28168e8a35463d8 Mon Sep 17 00:00:00 2001
From: Christopher Baines <mail@cbaines.net>
Date: Wed, 6 May 2015 21:31:56 +0100
Subject: Initial commit

---
 styleT.html | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 styleT.html

(limited to 'styleT.html')

diff --git a/styleT.html b/styleT.html
new file mode 100644
index 0000000..fd2c419
--- /dev/null
+++ b/styleT.html
@@ -0,0 +1,32 @@
+<html>
+  <head>
+    <link rel="stylesheet" href="leaflet/dist/leaflet.css" />
+    <script src="leaflet/dist/leaflet-src.js"></script>
+
+    <style>
+        body {
+          padding: 0;
+          margin: 0;
+        }
+
+        html, body, #map {
+          height: 100%;
+        }
+    </style>
+  </head>
+  <body>
+    <div id="map">
+    </div>
+
+    <script>
+      var map = L.map('map', {
+          center: [50.9087036, -1.4045204], // The Art House Cafe
+          zoom: 13
+      });
+
+      L.tileLayer('//{s}.tile.thunderforest.com/transport/{z}/{x}/{y}.png', {
+         attribution: '&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
+      }).addTo(map);
+    </script>
+  </body>
+</html>
-- 
cgit v1.2.3