mapserver/static/js/map/SimpleCRS.js
2019-08-29 10:28:52 +02:00

7 lines
125 B
JavaScript

export default L.Util.extend({}, L.CRS.Simple, {
scale: function (zoom) {
return Math.pow(2, zoom-9);
}
});