blob: 82f82762cd5712a77f1717c939a611e7b896b91c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
const map = L.map('map', {
crs: L.CRS.Simple
})
map.setView([0, 0], 13);
L.tileLayer('/tiles/{z}/{x}/{y}', {
maxZoom: 13,
minZoom: 13,
attribution: 'trash-map'
}).addTo(map);
|