Code coverage report for src/geo/crs/CRS.EPSG4326.js

Statements: 100% (1 / 1)      Branches: 100% (0 / 0)      Functions: 100% (0 / 0)      Lines: 100% (1 / 1)     

All files » src/geo/crs/ » CRS.EPSG4326.js
1 2 3 4 5 6 7 8 9 10 11        1            
/*
 * L.CRS.EPSG4326 is a CRS popular among advanced GIS specialists.
 */
 
L.CRS.EPSG4326 = L.extend({}, L.CRS, {
	code: 'EPSG:4326',
 
	projection: L.Projection.LonLat,
	transformation: new L.Transformation(1 / 360, 0.5, -1 / 360, 0.5)
});