onomatopoeia/html/map.html

33 lines
582 B
HTML

<html>
<head>
<link rel="stylesheet" href="leaflet.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="leaflet.ie.css" />
<![endif]-->
<script src="leaflet.js"></script>
<style>
#map {
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
var map = L.map('map', {
crs: L.CRS.Simple
}).setView([0, 0], 5);
L.tileLayer('data/{z}/{y}/{x}.png', {
attribution: 'Generated by <a href="https://github.com/xyzz/onomatopoeia">onomatopoeia</a>',
maxZoom: 5,
tileSize: 384,
continuousWorld: true
}).addTo(map);
</script>
</body>
</html>