I am trying Orthanc, out of the box. The included viewer works but I would like to be able to serve up images to an OpenSeaDragon viewer.
Orthanc is pretty nice in that it has a webapi to service up the tile requests. Has anyone used Orthanc and openseadragon?
What tile format is Orthanc using? Looks like their viewer is using openlayers.
Does anyone know how to define the tile source or written a custom tile source?
viewer = OpenSeadragon({
id: “openseadragon-DragonViewer”,
wrapHorizontal: false,
zoomPerScroll: 2,
tileSources: {
height: 67776,
width: 68224,
tileSize: 512,
getTileUrl: function (level, x, y) {
return “http://localhost:8042/wsi/tiles/cd4dd414-cb4eb9af-920bce0a-56defef8-8ed810cd/” + level + “/” + x + “/” + y;
},
type: ‘tiledmapservice’
},
Thanks
-Markus