mapserver/server/static/js/SimpleCRS.js

8 lines
151 B
JavaScript
Raw Normal View History

2019-04-04 11:19:29 +03:00
/* exported SimpleCRS */
2019-02-01 15:20:50 +03:00
var SimpleCRS = L.Util.extend({}, L.CRS.Simple, {
scale: function (zoom) {
return Math.pow(2, zoom-9);
}
});