mapserver/server/static/js/SimpleCRS.js

8 lines
140 B
JavaScript
Raw Normal View History

2019-02-01 15:20:50 +03:00
'use strict';
var SimpleCRS = L.Util.extend({}, L.CRS.Simple, {
scale: function (zoom) {
return Math.pow(2, zoom-9);
}
});