mapserver/server/static/js/SimpleCRS.js

8 lines
151 B
JavaScript
Raw Normal View History

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