diff --git a/build.properties b/build.properties index 54767969..4c235715 100644 --- a/build.properties +++ b/build.properties @@ -6,7 +6,7 @@ PROJECT: openseadragon BUILD_MAJOR: 0 BUILD_MINOR: 9 -BUILD_ID: 90 +BUILD_ID: 92 BUILD: ${PROJECT}.${BUILD_MAJOR}.${BUILD_MINOR}.${BUILD_ID} VERSION: ${BUILD_MAJOR}.${BUILD_MINOR}.${BUILD_ID} diff --git a/openseadragon.js b/openseadragon.js index 2bde467c..28bb0a99 100644 --- a/openseadragon.js +++ b/openseadragon.js @@ -1,7 +1,7 @@ /*globals OpenSeadragon */ /** - * @version OpenSeadragon 0.9.90 + * @version OpenSeadragon 0.9.92 * * @fileOverview *
+ Below is a make believe minimal inline configuration. Note that the + default tileSize is available as a property of the tile source. +
++ OpenSeadragon({ + ... + showNavigator: false, + blendTime: 0, + wrapHorizontal: true, + tileSources: { + height: 1024*256, + width: 1024*256, + tileSize: 256, + minLevel: 9, + getTileUrl: function( level, x, y ){ + + function zeropad( i ) { + var n = String( i ), + m = 6 - n.length; + n = (m < 1) ? n : new Array(m + 1).join( "0" ) + n; + return n.substr(0, 3) + "/" + n.substr(3); + }; + + return "http://s3.amazonaws.com/info.aaronland.tiles.shapetiles/"+(level-8)+"/"+zeropad(x)+"/"+zeropad(y)+".png"; + } + } + ... + }); ++