Implementation of OpenSeadragon that displays a sequence of images using Islandora's Djatoka TileSource.
Add source images to tiles array and set djatokaBaseUrl.
var tiles = ["FILE1.JP2", "FILE2.JP2"];
OpenSeadragon({
id: "viewer",
prefixUrl: "images/",
tileSources: tiles,
djatokaBaseUrl: "http://localhost:8080/adore-djatoka",
djatokaSettings: {tileSize: 256, tileOverlap: 0},
sequenceMode: true,
showRotationControl: true
});