I made a little selfmade mapserver (just with some pictures (tiled 256x256 pixels)).
It's made with fixed zoom (just level 12 nothing else).
Now it works fine and I'd like zoom too. ;-)
Now I wonder if I can just zoom in browser only (with leaflet)... So just use the giving tiles without loading higher detail tiles.
I know, browser get more lag. But's not a problem. It's just a little map for private use only.
var mymap = L.map( 'mapid' ).fitWorld().setView( [ uriparm( 'lat' ) || 0, uriparm( 'lon' ) || 0 ], 12 );
L.tileLayer( 'getbox.php?folder={id}&lz={z}&lx={x}&ly={y}&lid={id}&ld=1', {
maxZoom: 12,
minZoom: 12,
attribution: '',
id: test
} ).addTo( mymap );