L.Projection.LonLat = { project: function(latlng) { return new L.Point(latlng.lng, latlng.lat); }, unproject: function(point, unbounded) { return new L.LatLng(point.y, point.x, unbounded); } };