mapserver/static/js/SimpleCRS.js

7 lines
125 B
JavaScript
Raw Normal View History

2019-02-01 15:20:50 +03:00
2019-06-11 15:16:41 +03:00
export default L.Util.extend({}, L.CRS.Simple, {
2019-02-01 15:20:50 +03:00
scale: function (zoom) {
return Math.pow(2, zoom-9);
}
});