Sha256: 569a33da9acfd59daf53cfcb940961ec0a49aa9960b2419392615d37075f7a56
Contents?: true
Size: 296 Bytes
Versions: 9
Compression:
Stored size: 296 Bytes
Contents
/* * Simple equirectangular (Plate Carree) projection, used by CRS like EPSG:4326 and Simple. */ L.Projection.LonLat = { project: function (latlng) { return new L.Point(latlng.lng, latlng.lat); }, unproject: function (point) { return new L.LatLng(point.y, point.x); } };
Version data entries
9 entries across 9 versions & 1 rubygems