We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 2836f42Copy full SHA for 2836f42
lunigiana/index.html
@@ -0,0 +1,17 @@
1
+<!DOCTYPE html>
2
+<html>
3
+<head>
4
+ <title>Lunigiana</title>
5
+ <meta charset="utf-8" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.css" />
8
+ <link rel="stylesheet" href="static/style.css" />
9
+ <script src="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.js"></script>
10
+ <script type="text/javascript">
11
+ var map = L.map('map').setView([44.2581073052,10.0106919981], 13);
12
+ </script>
13
+</head>
14
+<body>
15
+ <div id="map"></div>
16
+</body>
17
+</html>
lunigiana/static/style.css
@@ -0,0 +1 @@
+#map { height: 400px; }
0 commit comments