Tell me more ×
Geographic Information Systems Stack Exchange is a question and answer site for cartographers, geographers and GIS professionals. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.