Separate into different files

This commit is contained in:
Arne Schlüter 2014-11-17 14:37:41 +01:00
commit 5fc4b7b095
2 changed files with 7 additions and 8 deletions

5
www/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);
})();