I'm trying to display a wms layer located at http://geoportal.cuzk.cz/WMS_ZM200_PUB/WMService.aspx in EPSG:102067 with Leaflet + Leaflet Proj4JS. I followed the example given at git repository, but got stuck with L.Transformation values.
crs = L.CRS.proj4js('EPSG:102067'
,"+proj=krovak +lat_0=49.5 +lon_0=24.83333333333333 "+
"+alpha=30.28813975277778 +k=0.9999 +x_0=0 +y_0=0 "+
"+ellps=bessel +units=m +no_defs",
new L.Transformation(1, -950003.17502118601, -1, -1250003.1750036045));
, where the negative numbers stand for the lower left bottom of desired crs. How do I find the right values for the transformation?