在JavaScript中旋转SVG组元素的位置而不旋转整个图像

时间:2011-06-19 22:01:39

标签: javascript svg

我有一个在SVG中绘制的地图,我使用矩阵变换来根据某些鼠标事件进行旋转。当我点击地图的某些部分时,我会绘制注释(在与旋转图像分开的组元素中)。

现在,我可以通过将事件发送到JavaScript函数来作为单独的操作来拖动它,从而将这些注释与地图一起移动。当我旋转和缩放底层地图时,我想做同样的事情,但我不确定如何继续 - 显然我不想旋转整个注释图像;我只想将其移动以匹配更新的地图。似乎我可能需要弄清楚如何计算地图变换对单个点的X / Y坐标的影响,然后将该计算应用于注释位置。我似乎无法找到任何可能有助于弄清楚如何做到这一点的资源。

这是我写的一篇博客文章,谈论我如何操纵底层地图:http://justindthomas.wordpress.com/category/flower-nfa/

该文章中的实例当前不起作用(我移动了JavaScript文件的位置),但它应该为我的问题提供一些有用的上下文。

1 个答案:

答案 0 :(得分:1)

我最后只是手工做数学。这是我用于后代的功能:

getRadiusAngle: function(referenceX, referenceY, centerX, centerY) {                
    var width = centerX - referenceX;
    var height = centerY - referenceY;
    var angle, radius;

    if(centerY > referenceY) {
        if(centerX > referenceX) {
            angle = Math.PI - Math.atan(Math.abs(height/width));
            radius = Math.sqrt(Math.pow(width, 2) + Math.pow(height, 2));
        } else if (centerX < referenceX) {
            angle = Math.atan(Math.abs(height/width));
            radius = Math.sqrt(Math.pow(width, 2) + Math.pow(height, 2));
        } else if (centerX == referenceX) {
            angle = Math.PI / 2;
            radius = height;
        }
    } else if(centerY < referenceY) {
        if(centerX > referenceX) {
            angle = Math.PI + Math.atan(Math.abs(height/width));
            radius = Math.sqrt(Math.pow(width, 2) + Math.pow(height, 2));
        } else if (centerX < referenceX) {
            angle = (2 * Math.PI) - Math.atan(Math.abs(height/width));
            radius = Math.sqrt(Math.pow(width, 2) + Math.pow(height, 2));
        } else if (centerX == referenceX) {
            angle = Math.PI * 1.5;
            radius = Math.abs(height);
        }
    } else if(centerY == referenceY) {
        if(centerX > referenceX) {
            angle = Math.PI;
            radius = width;
        } else if (centerX < referenceX) {
            angle = 0;
            radius = Math.abs(width);
        } else if(centerX == referenceX) {
            angle = 0;
            radius = 0;
        }
    }

    return({
        "radius": radius, 
        "angle": angle
    })
},

对于旋转操作,我使用了:

var calcwidth = annotations[i].getAttribute("calcwidth");
var matrix = annotations[i].getCTM();

var referenceX = (matrix.e + (calcwidth/2));
var referenceY = (matrix.f + 32);

var ra = this.getRadiusAngle(referenceX, referenceY, pointerX, pointerY);

var current_angle = ra.angle;
var radius = ra.radius

var newX, newY;
if(radius == 0) {
    newX = matrix.e;
    newY = matrix.f;
} else {      
    var new_angle = current_angle + -radians;  

    newX = (pointerX + (radius * Math.cos(new_angle))) - (calcwidth/2);
    newY = (pointerY + -(radius * Math.sin(new_angle))) - 32;
}

annotations[i].setAttribute("transform", "translate(" 
    + newX + " " + newY + ")");

对于缩放,我使用了类似的策略。