我正在使用Mike Bostock世界旅遊地圖visualization,我想進行一些修改。循環過渡並按給定順序顯示國家
1)我希望在顯示最後一個國家後重播動畫。
2)未按名稱排序DESC,我想定義tsv文件中行號的順序。
我試過在轉換中加入重播功能,但沒有運氣,我似乎無法真正理解它是如何工作的,所以我需要一些幫助。
function ready(error, world, names) {
if (error) throw error;
var globe = {type: "Sphere"},
land = topojson.feature(world, world.objects.land),
countries = topojson.feature(world, world.objects.countries).features,
borders = topojson.mesh(world, world.objects.countries, function(a, b) { return a !== b; }),
i = -1,
n = countries.length;
countries = countries.filter(function(d) {
return names.some(function(n) {
//if (d.id == n.id) return d.name = n.name;
if (d.id == n.id) {
d.name = n.name;
d.org = n.org;
return d;
}
});
}).sort(function(a, b) {
return a.name.localeCompare(b.name);
});
(function transition() {
d3.transition()
.duration(1250)
.each("start", function() {
var data_pais = countries[i = (i + 1) % n]
title.text(data_pais.name);
subtitle.text(data_pais.org);
})
.tween("rotate", function() {
var p = d3.geo.centroid(countries[i]),
r = d3.interpolate(projection.rotate(), [-p[0], -p[1]]);
return function(t) {
projection.rotate(r(t));
c.clearRect(0, 0, width, height);
c.fillStyle = "#ccc", c.beginPath(), path(land), c.fill();
c.fillStyle = "#f00", c.beginPath(), path(countries[i]), c.fill();
c.strokeStyle = "#fff", c.lineWidth = .5, c.beginPath(), path(borders), c.stroke();
c.strokeStyle = "#000", c.lineWidth = 2, c.beginPath(), path(globe), c.stroke();
};
})
.transition()
.each("end", transition);
})();
}
嘿安德魯,你是對的names.length位,謝謝!自定義排序不起作用,我刪除了排序代碼,並將tsv傳遞給csv文件以防萬一,但它以字母順序顯示國家/地區。 – Rod0n
啊,是的,猜測我應該在測試的時候交換訂單。我想我設法解決了這個問題;在一些有限的測試中,我管理了一個自定義命令。我已經用一些額外的代碼更新了答案。 –
卓越的安德魯,偉大的工程! – Rod0n