Платформа ЦРНП "Мирокод" для разработки проектов https://git.mirocod.ru
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
457 B

---
layout: tutorial_frame
title: Leaflet class diagram
---
<script type='text/javascript'>
var bounds = [[0,0], [1570,1910]];
var map = L.map('map', {
crs: L.CRS.Simple,
maxZoom: 0,
minZoom: -4,
maxBounds: bounds
});
map.getContainer().style.width = '100vw';
map.getContainer().style.height= '100vh';
document.body.style.margin = 0;
var image = L.imageOverlay('class-diagram.png', bounds).addTo(map);
map.fitBounds(bounds);
</script>