在我的数据中,我有与国家相关的价值观。我为每个国家创建了缩放的圆圈,现在想使用cx和cy将它们放在每个国家的中心。
我使用topoJSON生成了一个地图,其中包含国家/地区代码“ids”,并且我的数据(cd)中包含匹配的国家/地区代码。
{"type": "Polygon",
"id": 604,
"arcs": [
[133, -473, -448, -378, -374, -413]
]
},
使用D3的path.centroid(feature),如何找到每个topoJSON路径的质心?
g.selectAll("circle")
.data(cd)
.enter()
.append("circle")
.attr("class", "bubble")
.attr("cx", 50)
.attr("cy", 50)
.attr("r", function(d) {
return r(+d.Value)
})
g.selectAll("path")
.data(topojson.object(topology, topology.objects.countries)
.geometries)
.enter()
.append("path")
.attr("d", path)
这里的完整代码Plunker
答案 0 :(得分:5)
这样做的一种方法是:
// bind the map data
var paths = g.selectAll("path")
.data(topojson.object(topology, topology.objects.countries)
.geometries)
.enter()
.append("path")
.attr("d", path);
g.selectAll("circle")
.data(cd)
.enter()
.append("circle")
.attr("class", "bubble")
.attr("r", function(d){
return r(+d.Value);
})
// using the map data
// position a circle for matches in cd array
.attr("transform", function(d) {
for (var i = 0; i < paths.data().length; i++){
var p = paths.data()[i];
if (p.id === d["country-code"]){
var t = path.centroid(p);
return "translate(" + t + ")";
}
}
});
更新了plunker
征求意见
在您描述的情况下,我总是将x / y位置存储在数据数组中:
g.selectAll("circle")
.data(cd)
.enter()
.append("circle")
.attr("class", "bubble")
.attr("r", function(d){
return r(+d.Value);
})
.attr("cx", function(d) {
for (var i = 0; i < paths.data().length; i++){
var p = paths.data()[i];
if (p.id === d["country-code"]){
var t = path.centroid(p);
d.x = t[0];
d.y = t[1];
return d.x;
}
}
})
.attr("cy", function(d){
return d.y;
})
cd
数组中的对象现在将具有x / y像素位置的其他属性。
更新了plunker two。
答案 1 :(得分:2)
我会计算TopoJSON功能的GeoJSON等价物,并使用d3.geo.centroid
计算每个要素的地理中心。从我前一段时间写的一个例子(将每个国家描绘成一个具有比例区域的正方形,以每个国家的质心为中心):
var geojson = topojson.feature(data, data.objects.countries).features;
// Compute the projected centroid, area and length of the side
// of the squares.
geojson.forEach(function(d) {
d.centroid = projection(d3.geo.centroid(d));
// more calculations...
});