From dde42b641d675009ad5958f2ca2a34c01589ab5b Mon Sep 17 00:00:00 2001 From: radix-pro Date: Mon, 1 Jul 2013 22:38:37 -0700 Subject: [PATCH 1/9] Update iiiftilesource.js Fix Issue #55 "Tiles rendering issue..." --- src/iiiftilesource.js | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/src/iiiftilesource.js b/src/iiiftilesource.js index ae1896df..9c0ea902 100644 --- a/src/iiiftilesource.js +++ b/src/iiiftilesource.js @@ -65,10 +65,19 @@ $.IIIFTileSource = function( options ){ // to preserve backward compatibility. options.tileSize = this.tile_width; - options.maxLevel = options.maxLevel ? options.maxLevel : Number( - Math.ceil( Math.log( Math.max( this.width, this.height ), 2 ) ) - ); - + if (! options.maxLevel ) { + var mf = -1; + if ( this.scale_factor instanceof Array ) + for ( var i = 0; i < this.scale_factor.length; i++ ) + { + var cf = Number( this.scale_factor[i] ); + if ( !isNaN( cf ) && cf > mf ) mf = cf; + } + if ( mf < 0 ) + options.maxLevel = Number( Math.ceil( Math.log( Math.max( this.width, this.height ), 2 ))) + else options.maxLevel = mf; + } + $.TileSource.apply( this, [ options ] ); }; @@ -176,7 +185,7 @@ $.extend( $.IIIFTileSource.prototype, $.TileSource.prototype, { iiif_tile_h; - if ( level_width < this.tile_width || level_height < this.tile_height ){ + if ( level_width < this.tile_width && level_height < this.tile_height ){ iiif_region = 'full'; } else { iiif_tile_x = x * iiif_tile_size_width; From 44a9d1b98b4c80daf9aba71296a1cde5953220d7 Mon Sep 17 00:00:00 2001 From: radix-pro Date: Mon, 1 Jul 2013 23:49:25 -0700 Subject: [PATCH 2/9] Update iiiftilesource.js --- src/iiiftilesource.js | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/iiiftilesource.js b/src/iiiftilesource.js index 9c0ea902..4451da23 100644 --- a/src/iiiftilesource.js +++ b/src/iiiftilesource.js @@ -68,14 +68,20 @@ $.IIIFTileSource = function( options ){ if (! options.maxLevel ) { var mf = -1; if ( this.scale_factor instanceof Array ) + { for ( var i = 0; i < this.scale_factor.length; i++ ) { var cf = Number( this.scale_factor[i] ); - if ( !isNaN( cf ) && cf > mf ) mf = cf; + if ( !isNaN( cf ) && cf > mf ) { + mf = cf; + } } - if ( mf < 0 ) - options.maxLevel = Number( Math.ceil( Math.log( Math.max( this.width, this.height ), 2 ))) - else options.maxLevel = mf; + } + if ( mf < 0 ) { + options.maxLevel = Number( Math.ceil( Math.log( Math.max( this.width, this.height ), 2 ))); + } else { + options.maxLevel = mf; + } } $.TileSource.apply( this, [ options ] ); From 0441cfe4ec6ed3dfd7b3598bd8e8e6986870a4db Mon Sep 17 00:00:00 2001 From: radix-pro Date: Mon, 1 Jul 2013 23:55:07 -0700 Subject: [PATCH 3/9] Update iiiftilesource.js --- src/iiiftilesource.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iiiftilesource.js b/src/iiiftilesource.js index 4451da23..802e932c 100644 --- a/src/iiiftilesource.js +++ b/src/iiiftilesource.js @@ -72,7 +72,7 @@ $.IIIFTileSource = function( options ){ for ( var i = 0; i < this.scale_factor.length; i++ ) { var cf = Number( this.scale_factor[i] ); - if ( !isNaN( cf ) && cf > mf ) { + if ( (! isNaN( cf )) && ( cf > mf )) { mf = cf; } } From a4303fb23267e7bcdcacdda887a698ecd97e4df1 Mon Sep 17 00:00:00 2001 From: radix-pro Date: Tue, 2 Jul 2013 00:02:48 -0700 Subject: [PATCH 4/9] Update iiiftilesource.js --- src/iiiftilesource.js | 30 +++++++++++------------------- 1 file changed, 11 insertions(+), 19 deletions(-) diff --git a/src/iiiftilesource.js b/src/iiiftilesource.js index 802e932c..1649a096 100644 --- a/src/iiiftilesource.js +++ b/src/iiiftilesource.js @@ -63,27 +63,19 @@ $.IIIFTileSource = function( options ){ // to store it. It may be possible to make tileSize a vector // OpenSeadraon.Point but would require careful implementation // to preserve backward compatibility. - options.tileSize = this.tile_width; - - if (! options.maxLevel ) { - var mf = -1; - if ( this.scale_factor instanceof Array ) - { - for ( var i = 0; i < this.scale_factor.length; i++ ) - { - var cf = Number( this.scale_factor[i] ); - if ( (! isNaN( cf )) && ( cf > mf )) { - mf = cf; + options.tileSize = this.tile_width; + if (! options.maxLevel){ + var mf = -1; + if (this.scale_factor instanceof Array){ + for (var i = 0;i < this.scale_factor.length;i++) + { + var cf = Number(this.scale_factor[i]); + if (!isNaN(cf) && cf > mf) mf = cf; } } - } - if ( mf < 0 ) { - options.maxLevel = Number( Math.ceil( Math.log( Math.max( this.width, this.height ), 2 ))); - } else { - options.maxLevel = mf; - } - } - + if ( mf < 0 ) options.maxLevel = Number(Math.ceil(Math.log(Math.max(this.width, this.height ), 2))); + else options.maxLevel = mf; + } $.TileSource.apply( this, [ options ] ); }; From 040ff3a7aea6f9d8d371665d131e04cb0b25799e Mon Sep 17 00:00:00 2001 From: radix-pro Date: Tue, 2 Jul 2013 00:18:37 -0700 Subject: [PATCH 5/9] Update iiiftilesource.js --- src/iiiftilesource.js | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/src/iiiftilesource.js b/src/iiiftilesource.js index 1649a096..98cfa166 100644 --- a/src/iiiftilesource.js +++ b/src/iiiftilesource.js @@ -63,19 +63,24 @@ $.IIIFTileSource = function( options ){ // to store it. It may be possible to make tileSize a vector // OpenSeadraon.Point but would require careful implementation // to preserve backward compatibility. - options.tileSize = this.tile_width; - if (! options.maxLevel){ + options.tileSize = this.tile_width; + + if (! options.maxLevel) { var mf = -1; - if (this.scale_factor instanceof Array){ + if (this.scale_factor instanceof Array) { for (var i = 0;i < this.scale_factor.length;i++) { var cf = Number(this.scale_factor[i]); - if (!isNaN(cf) && cf > mf) mf = cf; + if (!isNaN(cf) && cf > mf) { mf = cf; } } } - if ( mf < 0 ) options.maxLevel = Number(Math.ceil(Math.log(Math.max(this.width, this.height ), 2))); - else options.maxLevel = mf; - } + if ( mf < 0 ) { + options.maxLevel = Number(Math.ceil(Math.log(Math.max(this.width, this.height ), 2))); + } else { + options.maxLevel = mf; + } + } + $.TileSource.apply( this, [ options ] ); }; From acd55c709d9025141e3d954eb663710edcc680ff Mon Sep 17 00:00:00 2001 From: radix-pro Date: Tue, 2 Jul 2013 00:27:53 -0700 Subject: [PATCH 6/9] Update iiiftilesource.js --- src/iiiftilesource.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/iiiftilesource.js b/src/iiiftilesource.js index 98cfa166..4c36914e 100644 --- a/src/iiiftilesource.js +++ b/src/iiiftilesource.js @@ -74,11 +74,8 @@ $.IIIFTileSource = function( options ){ if (!isNaN(cf) && cf > mf) { mf = cf; } } } - if ( mf < 0 ) { - options.maxLevel = Number(Math.ceil(Math.log(Math.max(this.width, this.height ), 2))); - } else { - options.maxLevel = mf; - } + if ( mf < 0 ) { options.maxLevel = Number(Math.ceil(Math.log(Math.max(this.width, this.height ), 2))); } + else { options.maxLevel = mf; } } $.TileSource.apply( this, [ options ] ); From 8f8e0280152be7fc776adde095e93eab44359226 Mon Sep 17 00:00:00 2001 From: radix-pro Date: Tue, 2 Jul 2013 00:34:23 -0700 Subject: [PATCH 7/9] Update iiiftilesource.js --- src/iiiftilesource.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/iiiftilesource.js b/src/iiiftilesource.js index 4c36914e..6948d1f5 100644 --- a/src/iiiftilesource.js +++ b/src/iiiftilesource.js @@ -76,8 +76,8 @@ $.IIIFTileSource = function( options ){ } if ( mf < 0 ) { options.maxLevel = Number(Math.ceil(Math.log(Math.max(this.width, this.height ), 2))); } else { options.maxLevel = mf; } - } - + } + $.TileSource.apply( this, [ options ] ); }; From 3c7e4b794a7a24f9c88496634d6c0ccf927f5069 Mon Sep 17 00:00:00 2001 From: radix-pro Date: Tue, 2 Jul 2013 00:41:22 -0700 Subject: [PATCH 8/9] Update iiiftilesource.js --- src/iiiftilesource.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/iiiftilesource.js b/src/iiiftilesource.js index 6948d1f5..8617f8c2 100644 --- a/src/iiiftilesource.js +++ b/src/iiiftilesource.js @@ -65,16 +65,16 @@ $.IIIFTileSource = function( options ){ // to preserve backward compatibility. options.tileSize = this.tile_width; - if (! options.maxLevel) { + if (! options.maxLevel ) { var mf = -1; - if (this.scale_factor instanceof Array) { - for (var i = 0;i < this.scale_factor.length;i++) + if ( this.scale_factor instanceof Array ) { + for ( var i = 0; i < this.scale_factor.length; i++ ) { - var cf = Number(this.scale_factor[i]); - if (!isNaN(cf) && cf > mf) { mf = cf; } + var cf = Number( this.scale_factor[i] ); + if ( !isNaN(cf) && cf > mf ) { mf = cf; } } } - if ( mf < 0 ) { options.maxLevel = Number(Math.ceil(Math.log(Math.max(this.width, this.height ), 2))); } + if ( mf < 0 ) { options.maxLevel = Number( Math.ceil( Math.log( Math.max( this.width, this.height ), 2 ))); } else { options.maxLevel = mf; } } From 004f13365d4ae25d6ed97c1b6e5c807e1935da3e Mon Sep 17 00:00:00 2001 From: radix-pro Date: Tue, 2 Jul 2013 13:41:37 -0700 Subject: [PATCH 9/9] Update iiiftilesource.js --- src/iiiftilesource.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/iiiftilesource.js b/src/iiiftilesource.js index 8617f8c2..908fc38d 100644 --- a/src/iiiftilesource.js +++ b/src/iiiftilesource.js @@ -67,14 +67,14 @@ $.IIIFTileSource = function( options ){ if (! options.maxLevel ) { var mf = -1; - if ( this.scale_factor instanceof Array ) { - for ( var i = 0; i < this.scale_factor.length; i++ ) - { - var cf = Number( this.scale_factor[i] ); - if ( !isNaN(cf) && cf > mf ) { mf = cf; } + var scfs = this.scale_factors || this.scale_factor; + if ( scfs instanceof Array ) { + for ( var i = 0; i < scfs.length; i++ ) { + var cf = Number( scfs[i] ); + if ( !isNaN( cf ) && cf > mf ) { mf = cf; } } } - if ( mf < 0 ) { options.maxLevel = Number( Math.ceil( Math.log( Math.max( this.width, this.height ), 2 ))); } + if ( mf < 0 ) { options.maxLevel = Number(Math.ceil(Math.log(Math.max(this.width, this.height), 2))); } else { options.maxLevel = mf; } }