mapserver/public/js/map/SimpleCRS.js
2021-04-12 13:03:10 +02:00

7 lines
125 B
JavaScript

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