我正在使用d3构建一个活动图。我显示了一张世界地图,然后是一些代表活动的点。地图应该是可平移和可缩放的。
我现在用来转换的函数看起来像这样:
function move() {
var t = d3.event.translate;
var s = d3.event.scale;
var h = height / 4;
t[ 0 ] = Math.min(
( width / height ) * ( s - 1 ),
Math.max( width * ( 1 - s ), t[ 0 ] )
);
t[ 1 ] = Math.min(
h * ( s - 1 ) + h * s,
Math.max( height * ( 1 - s ) - h * s, t[ 1 ] )
);
zoom.translate( t );
ctrl.g.attr( 'transform', 'translate(' + t + ')scale(' + s + ')' );
ctrl.points.attr( 'transform', 'translate(' + t + ')' );
//adjust the country hover stroke width based on zoom level
d3.selectAll( '.country' ).style( 'stroke-width', 1.5 / s );
}
这会导致点在周围移动,而不是根据纬度和经度保持其位置。任何帮助都将不胜感激。
编辑:我忘了提到这些点应该保持它们的比例,也就是说,即使我放大了世界地图,这些点也不应该缩放,只会移动。
发布于 2014-11-17 16:57:21
我找到了我的解决方案,
我忘了缩小分数了:/
我添加了
d3.selectAll( '.point' ).attr('r', 5/s);
与地图的其余部分一起缩放点。
https://stackoverflow.com/questions/26977351
复制