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 30ca7670..dc5b06d8 100644 --- a/openseadragon.js +++ b/openseadragon.js @@ -1,5 +1,5 @@ /** - * @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({ + id: "example2-custom-tilesource", + prefixUrl: "/openseadragon", + navigatorSizeRatio: 0.25, + tileSources: { + height: 512*256, + width: 512*256, + tileSize: 256, + minLevel: 8, + getTileUrl: function( level, x, y ){ + return "http://s3.amazonaws.com/com.modestmaps.bluemarble/"+(level-8)+"-r"+x+"-c"+y+".jpg"; + } + } + }); ++