mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-26 07:06:10 +03:00
Rotating overlays.
This commit is contained in:
parent
b9583c43ac
commit
6c63710131
@ -1122,7 +1122,7 @@ function drawOverlay( viewport, overlay, container ){
|
|||||||
overlay.bounds.getSize(),
|
overlay.bounds.getSize(),
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
overlay.drawHTML( container );
|
overlay.drawHTML( container, viewport );
|
||||||
}
|
}
|
||||||
|
|
||||||
function drawTiles( drawer, lastDrawn ){
|
function drawTiles( drawer, lastDrawn ){
|
||||||
|
@ -171,12 +171,18 @@
|
|||||||
* @function
|
* @function
|
||||||
* @param {Element} container
|
* @param {Element} container
|
||||||
*/
|
*/
|
||||||
drawHTML: function( container ) {
|
drawHTML: function( container, viewport ) {
|
||||||
var element = this.element,
|
var element = this.element,
|
||||||
style = this.style,
|
style = this.style,
|
||||||
scales = this.scales,
|
scales = this.scales,
|
||||||
|
drawerCenter = new $.Point(
|
||||||
|
viewport.viewer.drawer.canvas.width / 2,
|
||||||
|
viewport.viewer.drawer.canvas.height / 2
|
||||||
|
),
|
||||||
|
degrees = viewport.degrees,
|
||||||
position,
|
position,
|
||||||
size;
|
size,
|
||||||
|
overlayCenter;
|
||||||
|
|
||||||
if ( element.parentNode != container ) {
|
if ( element.parentNode != container ) {
|
||||||
//save the source parent for later if we need it
|
//save the source parent for later if we need it
|
||||||
@ -197,6 +203,19 @@
|
|||||||
position = position.apply( Math.floor );
|
position = position.apply( Math.floor );
|
||||||
size = size.apply( Math.ceil );
|
size = size.apply( Math.ceil );
|
||||||
|
|
||||||
|
// rotate the position of the overlay
|
||||||
|
if(this.scales){
|
||||||
|
overlayCenter = new $.Point( size.x / 2, size.y / 2 );
|
||||||
|
|
||||||
|
position = position.plus( overlayCenter ).rotate(
|
||||||
|
degrees,
|
||||||
|
drawerCenter
|
||||||
|
).minus( overlayCenter );
|
||||||
|
|
||||||
|
size = size.rotate( degrees, new $.Point( 0, 0 ) );
|
||||||
|
size = new $.Point( Math.abs( size.x ), Math.abs( size.y ) );
|
||||||
|
}
|
||||||
|
|
||||||
// call the onDraw callback if there is one to allow, this allows someone to overwrite
|
// call the onDraw callback if there is one to allow, this allows someone to overwrite
|
||||||
// the drawing/positioning/sizing of the overlay
|
// the drawing/positioning/sizing of the overlay
|
||||||
if (this.onDraw) {
|
if (this.onDraw) {
|
||||||
|
Loading…
Reference in New Issue
Block a user