1
0
forked from MTSR/mapserver
mapserver/static/js/SimpleCRS.js
2019-06-13 08:04:32 +02:00

8 lines
151 B
JavaScript

/* exported SimpleCRS */
var SimpleCRS = L.Util.extend({}, L.CRS.Simple, {
scale: function (zoom) {
return Math.pow(2, zoom-9);
}
});