mirror of
https://github.com/heyarne/berliner-winter.git
synced 2026-05-06 19:23:39 +02:00
20 lines
629 B
HTML
20 lines
629 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
|
|
<link rel="stylesheet" type="text/css" href="css/style.css">
|
|
</head>
|
|
<body>
|
|
<div id="map"></div>
|
|
<script src="bower_components/leaflet-dist/leaflet.js"></script>
|
|
<script type="text/javascript" src="http://maps.stamen.com/js/tile.stamen.js?v1.3.0"></script>
|
|
<script>
|
|
(function () {
|
|
var map = L.map('map').setView([52.50, 13.40], 11);
|
|
var layer = new L.StamenTileLayer("toner-lite");
|
|
map.addLayer(layer);
|
|
})();
|
|
</script>
|
|
</body>
|
|
</html>
|