Set up serving of index.html and assets

This commit is contained in:
Arne Schlüter 2015-02-07 17:55:47 +01:00
commit 155874f689
16 changed files with 9712 additions and 3 deletions

5
static/js/main.js Normal file
View file

@ -0,0 +1,5 @@
(function () {
var map = L.map('map').setView([52.50, 13.40], 11);
var layer = new L.StamenTileLayer("toner-lite");
map.addLayer(layer);
})();