Mapa WMS
				
					<!DOCTYPE html>
<html>
<head>
	<title>Mapa WMS</title>
	<meta charset="utf-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/leaflet.css" />
	<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/leaflet.js"></script>
</head>
<body>
	<div id="map" style="width: 100%; height: 500px;"></div>
	<script>
		var map = L.map('map').setView([51.505, -0.09], 13);
		L.tileLayer.wms('http://example.com/wms', {
			layers: 'nazwa_wybranej_warstwy',
			format: 'image/png',
			transparent: true,
			version: '1.3.0'
		}).addTo(map);
	</script>
</body>
</html>