我正在制作一个带缩放和平移的世界地图。我在某些城市画圆圈,圆圈的半径由数据决定。当鼠标悬停在这些圆圈上时,工具提示将显示显示数据。
代码的结构是
//在此选择上调用缩放行为 - 让我们调用此parentGroup
//捕获所有鼠标和触摸事件
//调用此childGroup
//隐藏工具提示组 - 将在鼠标悬停时显示/隐藏
//调用此工具提示组
这里的问题是
注意:我通过使用新的radius = oldRadius/currentScale
答案 0 :(得分:1)
我遇到了同样的问题,并且花了好几个小时才找到解决方案。
一旦我通过Peter Kerpedjiev找到了这个blog post,他用简单的术语解释了变换方程,我就可以轻松地将这个数学运用到工具提示变换中。
平移和缩放后,工具提示现在正确地跟随地图。
答案 1 :(得分:0)
我不明白你的陈述The negation of scale works on an image but in my case it doesnt work on a toolTipGroup (includes text, rect image and path)
。这应该可以正常工作,将其全部包含在g
和反比例中。棘手的部分是重新计算工具提示相对于缩放的位置。这是一个快速示例,它将工具提示放在我的家乡巴尔的摩市:
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.states {
fill: none;
stroke: #fff;
stroke-linejoin: round;
}
</style>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script>
var width = 960,
height = 500;
var fill = d3.scale.log()
.domain([10, 500])
.range(["brown", "steelblue"]);
var path = d3.geo.path();
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var zoom = d3.behavior.zoom()
.scaleExtent([1, 15])
.on("zoom", zoomed);
svg.append("rect")
.attr("class", "overlay")
.attr("width", width)
.attr("height", height);
var g = svg.append("g");
var tooltip,
tipPosition = [722, 160],
tipSize = [85,50];
d3.json("https://rawgit.com/mbostock/topojson/master/examples/us-10m.json", function(error, us) {
if (error) throw error;
g.append("g")
.attr("class", "counties")
.selectAll("path")
.data(topojson.feature(us, us.objects.counties).features)
.enter().append("path")
.attr("d", path)
.style("fill", function(d) { return fill(path.area(d)); });
g.append("path")
.datum(topojson.mesh(us, us.objects.states, function(a, b) { return a.id !== b.id; }))
.attr("class", "states")
.attr("d", path);
tooltip = g.append("g")
.attr("transform","translate(" + tipPosition + ")")
.attr("class","tooltip");
tooltip
.append("rect")
.style("fill", "steelblue")
.attr("width", tipSize[0])
.attr("height", tipSize[1] - 10)
.attr("rx", "10")
tooltip
.append("path")
.attr("d", function(){
var rv = "";
rv += "M";
rv += tipSize[0]/2 - 5;
rv += ","
rv += tipSize[1] - 10;
rv += "L";
rv += tipSize[0]/2 + 5;
rv += ","
rv += tipSize[1] - 10;
rv += "L";
rv += tipSize[0]/2;
rv += ","
rv += tipSize[1];
rv += "Z";
return rv;
})
.style("fill", "steelblue");
tooltip
.append("text")
.text("Baltimore")
.attr("transform","translate(" + (tipSize[0]/2) + "," + (tipSize[1]/2) + ")")
.attr("text-anchor", "middle")
.style("fill","black")
.style("font-family","arial");
svg
.call(zoom)
.call(zoom.event);
});
function zoomed() {
// apply zoom
g.attr("transform", "translate(" + d3.event.translate + ")scale(" + d3.event.scale + ")");
// calculate position with respect to zoom
var trans = [tipPosition[0] + (tipSize[0]/2 * (1-1/d3.event.scale)), tipPosition[1] + (tipSize[1] * (1-1/d3.event.scale))];
// inverse scale zoom
tooltip.attr("transform", "translate(" + trans + ")scale(" + 1/d3.event.scale +")")
}
</script>
答案 2 :(得分:0)
将Tooltip组移出路径组解决了我的问题。但我必须计算获取鼠标指针的位置来计算工具提示位置,该位置先前是根据圆心计算的。