Main Map: Difference between revisions

From The Lands Of Liberos Project

Content added Content deleted
No edit summary
(Replaced content with " e5e5y45")
Tag: Replaced
 
(100 intermediate revisions by the same user not shown)
Line 1: Line 1:

<!doctype html>
e5e5y45
<html>
<head>
<title>Map test</title>
<style type="text/css">
html, body { height: 100%; margin: 0; padding: 0; }
#map { width: 1660px; height: 1000px; }
</style>
<link rel="stylesheet" href="js/leaflet/leaflet.css" type="text/css"/>
<script type="text/javascript" src="js/leaflet/leaflet.js"></script>
</head>
<body>
<div id="map"></div>
<script type="text/javascript">
var map = L.map('map', {
crs: L.CRS.Simple,
center: [500, 880],
minZoom: 0,
maxZoom: 2,
zoom: 0
});
var bounds = [[0,0], [1000,1660]];
var image = L.imageOverlay('img/fantasy_map.jpg', bounds).addTo(map);
map.setMaxBounds(bounds);
map.on('drag', function() {
map.panInsideBounds(bounds, { animate: false });
});
</script>
</body>
</html>

Latest revision as of 14:38, 27 January 2024

e5e5y45

Cookies help us deliver our services. By using our services, you agree to our use of cookies.