mirror of
https://github.com/openstreetmap/mod_tile.git
synced 2025-08-05 18:51:43 +00:00
25 lines
797 B
HTML
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 © <a href="https://www.openstreetmap.org/">OpenStreetMap</a> contributors.',
|
|
}).addTo(map);
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|