mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-24 22:26:10 +03:00
Merge pull request #745 from sepastian/issue_742_overlays_with_pixel_coorinates
Add overlays after loading tileSource...
This commit is contained in:
commit
6be6e0c6f1
@ -605,6 +605,14 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype,
|
|||||||
options.success = function(event) {
|
options.success = function(event) {
|
||||||
successes++;
|
successes++;
|
||||||
|
|
||||||
|
// TODO: now that options has other things besides tileSource, the overlays
|
||||||
|
// should probably be at the options level, not the tileSource level.
|
||||||
|
if (options.tileSource.overlays) {
|
||||||
|
for (var i = 0; i < options.tileSource.overlays.length; i++) {
|
||||||
|
_this.addOverlay(options.tileSource.overlays[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (originalSuccess) {
|
if (originalSuccess) {
|
||||||
originalSuccess(event);
|
originalSuccess(event);
|
||||||
}
|
}
|
||||||
@ -628,14 +636,6 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype,
|
|||||||
};
|
};
|
||||||
|
|
||||||
_this.addTiledImage(options);
|
_this.addTiledImage(options);
|
||||||
|
|
||||||
// TODO: now that options has other things besides tileSource, the overlays
|
|
||||||
// should probably be at the options level, not the tileSource level.
|
|
||||||
if (options.tileSource.overlays) {
|
|
||||||
for (var i = 0; i < options.tileSource.overlays.length; i++) {
|
|
||||||
_this.addOverlay(options.tileSource.overlays[i]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// TileSources
|
// TileSources
|
||||||
|
Loading…
Reference in New Issue
Block a user