mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 13:16:10 +03:00
Change overlays to now always having Point location.
This commit is contained in:
parent
ffbb8b2cfe
commit
577327a629
220
src/overlay.js
220
src/overlay.js
@ -81,23 +81,23 @@
|
|||||||
* @param {Element} options.element
|
* @param {Element} options.element
|
||||||
* @param {OpenSeadragon.Point|OpenSeadragon.Rect} options.location - The
|
* @param {OpenSeadragon.Point|OpenSeadragon.Rect} options.location - The
|
||||||
* location of the overlay on the image. If a {@link OpenSeadragon.Point}
|
* location of the overlay on the image. If a {@link OpenSeadragon.Point}
|
||||||
* is specified, the overlay will keep a constant size independently of the
|
* is specified, the overlay will be located at this location with respect
|
||||||
* zoom. If a {@link OpenSeadragon.Rect} is specified, the overlay size will
|
* to the placement option. If a {@link OpenSeadragon.Rect} is specified,
|
||||||
* be adjusted when the zoom changes.
|
* the overlay will be placed at this location with the corresponding width
|
||||||
|
* and height and placement TOP_LEFT.
|
||||||
* @param {OpenSeadragon.Placement} [options.placement=OpenSeadragon.Placement.TOP_LEFT]
|
* @param {OpenSeadragon.Placement} [options.placement=OpenSeadragon.Placement.TOP_LEFT]
|
||||||
* Relative position to the viewport.
|
* Defines what part of the overlay should be at the specified options.location
|
||||||
* Only used if location is a {@link OpenSeadragon.Point}.
|
|
||||||
* @param {OpenSeadragon.Overlay.OnDrawCallback} [options.onDraw]
|
* @param {OpenSeadragon.Overlay.OnDrawCallback} [options.onDraw]
|
||||||
* @param {Boolean} [options.checkResize=true] Set to false to avoid to
|
* @param {Boolean} [options.checkResize=true] Set to false to avoid to
|
||||||
* check the size of the overlay everytime it is drawn when using a
|
* check the size of the overlay everytime it is drawn in the directions
|
||||||
* {@link OpenSeadragon.Point} as options.location. It will improve
|
* which are not scaled. It will improve performances but will cause a
|
||||||
* performances but will cause a misalignment if the overlay size changes.
|
* misalignment if the overlay size changes.
|
||||||
* @param {Boolean} [options.scaleWidth=true] Whether the width of the
|
* @param {Number} [options.width] The width of the overlay in viewport
|
||||||
* overlay should be adjusted when the zoom changes when using a
|
* coordinates. If specified, the width of the overlay will be adjusted when
|
||||||
* {@link OpenSeadragon.Rect} as options.location
|
* the zoom changes.
|
||||||
* @param {Boolean} [options.scaleHeight=true] Whether the height of the
|
* @param {Number} [options.height] The height of the overlay in viewport
|
||||||
* overlay should be adjusted when the zoom changes when using a
|
* coordinates. If specified, the height of the overlay will be adjusted when
|
||||||
* {@link OpenSeadragon.Rect} as options.location
|
* the zoom changes.
|
||||||
* @param {Boolean} [options.rotationMode=OpenSeadragon.OverlayRotationMode.EXACT]
|
* @param {Boolean} [options.rotationMode=OpenSeadragon.OverlayRotationMode.EXACT]
|
||||||
* How to handle the rotation of the viewport.
|
* How to handle the rotation of the viewport.
|
||||||
*/
|
*/
|
||||||
@ -124,42 +124,37 @@
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
this.element = options.element;
|
this.element = options.element;
|
||||||
this.scales = options.location instanceof $.Rect;
|
|
||||||
this.bounds = new $.Rect(
|
|
||||||
options.location.x,
|
|
||||||
options.location.y,
|
|
||||||
options.location.width,
|
|
||||||
options.location.height);
|
|
||||||
|
|
||||||
// this.position is never read by this class but is kept for backward
|
|
||||||
// compatibility
|
|
||||||
this.position = this.bounds.getTopLeft();
|
|
||||||
|
|
||||||
// this.size is only used by PointOverlay with options.checkResize === false
|
|
||||||
this.size = this.bounds.getSize();
|
|
||||||
|
|
||||||
this.style = options.element.style;
|
this.style = options.element.style;
|
||||||
|
this._init(options);
|
||||||
// rects are always top-left (RectOverlays don't use placement)
|
|
||||||
this.placement = options.location instanceof $.Point ?
|
|
||||||
options.placement : $.Placement.TOP_LEFT;
|
|
||||||
this.onDraw = options.onDraw;
|
|
||||||
this.checkResize = options.checkResize === undefined ?
|
|
||||||
true : options.checkResize;
|
|
||||||
this.scaleWidth = options.scaleWidth === undefined ?
|
|
||||||
true : options.scaleWidth;
|
|
||||||
this.scaleHeight = options.scaleHeight === undefined ?
|
|
||||||
true : options.scaleHeight;
|
|
||||||
this.rotationMode = options.rotationMode || $.OverlayRotationMode.EXACT;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/** @lends OpenSeadragon.Overlay.prototype */
|
/** @lends OpenSeadragon.Overlay.prototype */
|
||||||
$.Overlay.prototype = {
|
$.Overlay.prototype = {
|
||||||
|
|
||||||
|
// private
|
||||||
|
_init: function(options) {
|
||||||
|
this.location = options.location;
|
||||||
|
this.placement = options.placement === undefined ?
|
||||||
|
$.Placement.TOP_LEFT : options.placement;
|
||||||
|
this.onDraw = options.onDraw;
|
||||||
|
this.checkResize = options.checkResize === undefined ?
|
||||||
|
true : options.checkResize;
|
||||||
|
this.width = options.width === undefined ? null : options.width;
|
||||||
|
this.height = options.height === undefined ? null : options.height;
|
||||||
|
this.rotationMode = options.rotationMode || $.OverlayRotationMode.EXACT;
|
||||||
|
|
||||||
|
if (this.location instanceof $.Rect) {
|
||||||
|
this.width = this.location.width;
|
||||||
|
this.height = this.location.height;
|
||||||
|
this.location = this.location.getTopLeft();
|
||||||
|
this.placement = $.Placement.TOP_LEFT;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Internal function to adjust the position of a point-based overlay
|
* Internal function to adjust the position of an overlay
|
||||||
* depending on it size and anchor.
|
* depending on it size and placement.
|
||||||
* @function
|
* @function
|
||||||
* @param {OpenSeadragon.Point} position
|
* @param {OpenSeadragon.Point} position
|
||||||
* @param {OpenSeadragon.Point} size
|
* @param {OpenSeadragon.Point} size
|
||||||
@ -209,13 +204,19 @@
|
|||||||
style.left = "";
|
style.left = "";
|
||||||
style.position = "";
|
style.position = "";
|
||||||
|
|
||||||
if (this.scales) {
|
if (this.width !== null) {
|
||||||
if (this.scaleWidth) {
|
style.width = "";
|
||||||
style.width = "";
|
}
|
||||||
}
|
if (this.height !== null) {
|
||||||
if (this.scaleHeight) {
|
style.height = "";
|
||||||
style.height = "";
|
}
|
||||||
}
|
var transformOriginProp = $.getCssPropertyWithVendorPrefix(
|
||||||
|
'transformOrigin');
|
||||||
|
var transformProp = $.getCssPropertyWithVendorPrefix(
|
||||||
|
'transform');
|
||||||
|
if (transformOriginProp && transformProp) {
|
||||||
|
style[transformOriginProp] = "";
|
||||||
|
style[transformProp] = "";
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -233,11 +234,9 @@
|
|||||||
this.size = $.getElementSize(element);
|
this.size = $.getElementSize(element);
|
||||||
}
|
}
|
||||||
|
|
||||||
var positionAndSize = this.scales ?
|
var positionAndSize = this._getOverlayPositionAndSize(viewport);
|
||||||
this._getRectOverlayPositionAndSize(viewport) :
|
|
||||||
this._getPointOverlayPositionAndSize(viewport);
|
|
||||||
|
|
||||||
var position = this.position = positionAndSize.position;
|
var position = positionAndSize.position;
|
||||||
var size = this.size = positionAndSize.size;
|
var size = this.size = positionAndSize.size;
|
||||||
var rotate = positionAndSize.rotate;
|
var rotate = positionAndSize.rotate;
|
||||||
|
|
||||||
@ -249,13 +248,11 @@
|
|||||||
var style = this.style;
|
var style = this.style;
|
||||||
style.left = position.x + "px";
|
style.left = position.x + "px";
|
||||||
style.top = position.y + "px";
|
style.top = position.y + "px";
|
||||||
if (this.scales) {
|
if (this.width !== null) {
|
||||||
if (this.scaleWidth) {
|
style.width = size.x + "px";
|
||||||
style.width = size.x + "px";
|
}
|
||||||
}
|
if (this.height !== null) {
|
||||||
if (this.scaleHeight) {
|
style.height = size.y + "px";
|
||||||
style.height = size.y + "px";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
var transformOriginProp = $.getCssPropertyWithVendorPrefix(
|
var transformOriginProp = $.getCssPropertyWithVendorPrefix(
|
||||||
'transformOrigin');
|
'transformOrigin');
|
||||||
@ -279,16 +276,38 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
// private
|
// private
|
||||||
_getRectOverlayPositionAndSize: function(viewport) {
|
_getOverlayPositionAndSize: function(viewport) {
|
||||||
var position = viewport.pixelFromPoint(
|
var position = viewport.pixelFromPoint(this.location, true);
|
||||||
this.bounds.getTopLeft(), true);
|
var width = this.size.x;
|
||||||
var size = viewport.deltaPixelsFromPointsNoRotate(
|
var height = this.size.y;
|
||||||
this.bounds.getSize(), true);
|
if (this.width !== null || this.height !== null) {
|
||||||
|
var scaledSize = viewport.deltaPixelsFromPointsNoRotate(
|
||||||
|
new $.Point(this.width || 0, this.height || 0), true);
|
||||||
|
if (this.width !== null) {
|
||||||
|
width = scaledSize.x;
|
||||||
|
}
|
||||||
|
if (this.height !== null) {
|
||||||
|
height = scaledSize.y;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.checkResize &&
|
||||||
|
(this.width === null || this.height === null)) {
|
||||||
|
var eltSize = this.size = $.getElementSize(this.element);
|
||||||
|
if (this.width === null) {
|
||||||
|
width = eltSize.x;
|
||||||
|
}
|
||||||
|
if (this.height === null) {
|
||||||
|
height = eltSize.y;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var size = new $.Point(width, height);
|
||||||
|
this.adjust(position, size);
|
||||||
|
|
||||||
var rotate = 0;
|
var rotate = 0;
|
||||||
// BOUNDING_BOX is only valid if both directions get scaled.
|
// BOUNDING_BOX is only valid if both directions get scaled.
|
||||||
// Get replaced by exact otherwise.
|
// Get replaced by EXACT otherwise.
|
||||||
if (this.rotationMode === $.OverlayRotationMode.BOUNDING_BOX &&
|
if (this.rotationMode === $.OverlayRotationMode.BOUNDING_BOX &&
|
||||||
this.scaleWidth && this.scaleHeight) {
|
this.width !== null && this.height !== null) {
|
||||||
var boundingBox = new $.Rect(
|
var boundingBox = new $.Rect(
|
||||||
position.x, position.y, size.x, size.y, viewport.degrees)
|
position.x, position.y, size.x, size.y, viewport.degrees)
|
||||||
.getBoundingBox();
|
.getBoundingBox();
|
||||||
@ -297,23 +316,7 @@
|
|||||||
} else if (this.rotationMode !== $.OverlayRotationMode.NO_ROTATION) {
|
} else if (this.rotationMode !== $.OverlayRotationMode.NO_ROTATION) {
|
||||||
rotate = viewport.degrees;
|
rotate = viewport.degrees;
|
||||||
}
|
}
|
||||||
return {
|
|
||||||
position: position,
|
|
||||||
size: size,
|
|
||||||
rotate: rotate
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
// private
|
|
||||||
_getPointOverlayPositionAndSize: function(viewport) {
|
|
||||||
var position = viewport.pixelFromPoint(
|
|
||||||
this.bounds.getTopLeft(), true);
|
|
||||||
var size = this.checkResize ?
|
|
||||||
$.getElementSize(this.element) : this.size;
|
|
||||||
this.adjust(position, size);
|
|
||||||
// For point overlays, BOUNDING_BOX is invalid and get replaced by EXACT.
|
|
||||||
var rotate = this.rotationMode === $.OverlayRotationMode.NO_ROTATION ?
|
|
||||||
0 : viewport.degrees;
|
|
||||||
return {
|
return {
|
||||||
position: position,
|
position: position,
|
||||||
size: size,
|
size: size,
|
||||||
@ -346,29 +349,52 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Changes the location and placement of the overlay.
|
* Changes the overlay settings.
|
||||||
* @function
|
* @function
|
||||||
* @param {OpenSeadragon.Point|OpenSeadragon.Rect} location
|
* @param {OpenSeadragon.Point|OpenSeadragon.Rect|Object} location
|
||||||
|
* If an object is specified, the options are the same than the constructor
|
||||||
|
* except for the element which can not be changed.
|
||||||
* @param {OpenSeadragon.Placement} position
|
* @param {OpenSeadragon.Placement} position
|
||||||
*/
|
*/
|
||||||
update: function(location, placement) {
|
update: function(location, placement) {
|
||||||
this.scales = location instanceof $.Rect;
|
var options = $.isPlainObject(location) ? location : {
|
||||||
this.bounds = new $.Rect(
|
location: location,
|
||||||
location.x,
|
placement: placement
|
||||||
location.y,
|
};
|
||||||
location.width,
|
this._init({
|
||||||
location.height);
|
location: options.location || this.location,
|
||||||
// rects are always top-left
|
placement: options.placement !== undefined ?
|
||||||
this.placement = location instanceof $.Point ?
|
options.placement : this.placement,
|
||||||
placement : $.Placement.TOP_LEFT;
|
onDraw: options.onDraw || this.onDraw,
|
||||||
|
checkResize: options.checkResize || this.checkResize,
|
||||||
|
width: options.width !== undefined ? options.width : this.width,
|
||||||
|
height: options.height !== undefined ? options.height : this.height,
|
||||||
|
rotationMode: options.rotationMode || this.rotationMode
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Returns the current bounds of the overlay in viewport coordinates
|
||||||
* @function
|
* @function
|
||||||
|
* @param {OpenSeadragon.Viewport} [viewport] the viewport
|
||||||
* @returns {OpenSeadragon.Rect} overlay bounds
|
* @returns {OpenSeadragon.Rect} overlay bounds
|
||||||
*/
|
*/
|
||||||
getBounds: function() {
|
getBounds: function(viewport) {
|
||||||
return this.bounds.clone();
|
var width = this.width;
|
||||||
|
var height = this.height;
|
||||||
|
if (width === null || height === null) {
|
||||||
|
$.console.assert(viewport, 'The viewport must be specified to' +
|
||||||
|
' get the bounds of a not entirely scaling overlay');
|
||||||
|
var size = viewport.deltaPointsFromPixels(this.size, true);
|
||||||
|
if (width === null) {
|
||||||
|
width = size.x;
|
||||||
|
}
|
||||||
|
if (height === null) {
|
||||||
|
height = size.y;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return new $.Rect(
|
||||||
|
this.location.x, this.location.y, width, height);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2240,8 +2240,8 @@ function getOverlayObject( viewer, overlay ) {
|
|||||||
placement: placement,
|
placement: placement,
|
||||||
onDraw: overlay.onDraw,
|
onDraw: overlay.onDraw,
|
||||||
checkResize: overlay.checkResize,
|
checkResize: overlay.checkResize,
|
||||||
scaleWidth: overlay.scaleWidth,
|
width: overlay.width,
|
||||||
scaleHeight: overlay.scaleHeight,
|
height: overlay.height,
|
||||||
rotationMode: overlay.rotationMode
|
rotationMode: overlay.rotationMode
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -15,6 +15,8 @@
|
|||||||
<div id="contentDiv" class="openseadragon1"></div>
|
<div id="contentDiv" class="openseadragon1"></div>
|
||||||
<div id="annotation-div">
|
<div id="annotation-div">
|
||||||
<input type="button" value="Hide Overlays" id="hideOverlays">
|
<input type="button" value="Hide Overlays" id="hideOverlays">
|
||||||
|
<input type="button" value="Rotate" id="rotate">
|
||||||
|
<span id="degrees">0deg</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
@ -31,9 +33,14 @@
|
|||||||
var elt = document.createElement("div");
|
var elt = document.createElement("div");
|
||||||
elt.className = "runtime-overlay";
|
elt.className = "runtime-overlay";
|
||||||
elt.style.background = "green";
|
elt.style.background = "green";
|
||||||
elt.style.border = "1px solid red";
|
elt.style.outline = "3px solid red";
|
||||||
|
elt.style.opacity = "0.7";
|
||||||
elt.textContent = "Scaled overlay";
|
elt.textContent = "Scaled overlay";
|
||||||
viewer.addOverlay(elt, new OpenSeadragon.Rect(0.2, 0.2, 0.1, 0.1));
|
viewer.addOverlay({
|
||||||
|
element: elt,
|
||||||
|
location: new OpenSeadragon.Rect(0.21, 0.21, 0.099, 0.099),
|
||||||
|
rotationMode: OpenSeadragon.OverlayRotationMode.EXACT
|
||||||
|
});
|
||||||
|
|
||||||
elt = document.createElement("div");
|
elt = document.createElement("div");
|
||||||
elt.className = "runtime-overlay";
|
elt.className = "runtime-overlay";
|
||||||
@ -43,8 +50,9 @@
|
|||||||
elt.textContent = "Scaled vertically";
|
elt.textContent = "Scaled vertically";
|
||||||
viewer.addOverlay({
|
viewer.addOverlay({
|
||||||
element: elt,
|
element: elt,
|
||||||
location: new OpenSeadragon.Rect(0.6, 0.6, 0.1, 0.1),
|
location: new OpenSeadragon.Point(0.6, 0.6),
|
||||||
scaleWidth: false
|
height: 0.1,
|
||||||
|
placement: OpenSeadragon.Placement.TOP_LEFT
|
||||||
});
|
});
|
||||||
|
|
||||||
elt = document.createElement("div");
|
elt = document.createElement("div");
|
||||||
@ -56,28 +64,34 @@
|
|||||||
elt.textContent = "Scaled horizontally";
|
elt.textContent = "Scaled horizontally";
|
||||||
viewer.addOverlay({
|
viewer.addOverlay({
|
||||||
element: elt,
|
element: elt,
|
||||||
location: new OpenSeadragon.Rect(0.1, 0.5, 0.1, 0.1),
|
location: new OpenSeadragon.Point(0.1, 0.5),
|
||||||
scaleHeight: false
|
width: 0.1,
|
||||||
|
rotationMode: OpenSeadragon.OverlayRotationMode.BOUNDING_BOX
|
||||||
});
|
});
|
||||||
|
|
||||||
elt = document.createElement("div");
|
elt = document.createElement("div");
|
||||||
elt.className = "runtime-overlay";
|
elt.className = "runtime-overlay";
|
||||||
elt.style.background = "white";
|
elt.style.background = "white";
|
||||||
elt.style.opacity = "0.5";
|
elt.style.opacity = "0.5";
|
||||||
elt.style.border = "1px solid pink";
|
elt.style.border = "5px solid pink";
|
||||||
elt.style.width = "100px";
|
elt.style.width = "100px";
|
||||||
elt.style.height = "100px";
|
elt.style.height = "100px";
|
||||||
elt.textContent = "Not scaled, centered in the middle";
|
elt.textContent = "Not scaled, centered in the middle";
|
||||||
viewer.addOverlay({
|
viewer.addOverlay({
|
||||||
element: elt,
|
element: elt,
|
||||||
location: new OpenSeadragon.Point(0.5, 0.5),
|
location: new OpenSeadragon.Point(0.5, 0.5),
|
||||||
placement: OpenSeadragon.Placement.CENTER
|
placement: OpenSeadragon.Placement.CENTER,
|
||||||
|
checkResize: false
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
$("#hideOverlays").click(function(){
|
$("#hideOverlays").click(function(){
|
||||||
$(".runtime-overlay").toggle();
|
$(".runtime-overlay").toggle();
|
||||||
});
|
});
|
||||||
|
$("#rotate").click(function() {
|
||||||
|
viewer.viewport.setRotation(viewer.viewport.getRotation() + 22.5);
|
||||||
|
$("#degrees").text(viewer.viewport.getRotation() + "deg");
|
||||||
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
Loading…
Reference in New Issue
Block a user