<!doctype html>
<html>
<head>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
</head>
<body>
<div id="map" style="width: 1000px; height: 500px; position: relative;"></div>
<script src="libs/leaflet.js"></script>
<script>
var map = L.map('map').setView([45.035320, 41.966561], 10);
L.tileLayer('d:/Soft/MapTiles__/Maperitive/Tiles/{z}/{x}/{y}.png', {
maxZoom: 18
}).addTo(map);
L.control.fullscreen().addTo(map);
</script>
</body>
</html>