This commit is contained in:
Stefan Heinze 2025-03-28 12:51:33 -04:00 committed by GitHub
commit 0e6d14c968
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1346,7 +1346,7 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag
// Calculations for the interval of levels to draw
// can return invalid intervals; fix that here if necessary
highestLevel = Math.max(highestLevel, this.source.minLevel || 0);
highestLevel = Math.max(highestLevel || 0, this.source.minLevel || 0);
lowestLevel = Math.min(lowestLevel, highestLevel);
return {
lowestLevel: lowestLevel,