Files
openstreetmap-mod_tile-pyth…/utils/example-map/index.html
2021-09-21 11:16:45 +00:00

25 lines
797 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>renderd example map</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<link rel="stylesheet" href="leaflet/leaflet.css" />
<script src="leaflet/leaflet.min.js"></script>
</head>
<body style="margin: 0;">
<div id="map" style="position: absolute; width: 100%; height: 100%;"></div>
<script>
var map = L.map('map').setView([0, 0], 4);
L.tileLayer('http://localhost:8081/tiles/renderd-example/{z}/{x}/{y}.png', {
maxZoom: 12,
attribution: 'Map data &copy; <a href="https://www.openstreetmap.org/">OpenStreetMap</a> contributors.',
}).addTo(map);
</script>
</body>
</html>