gpt4 book ai didi

animation - 动画 D3 地球仪 (d3.geo.azimuthal)

转载 作者:行者123 更新时间:2023-12-04 15:13:48 27 4
gpt4 key购买 nike

我对 d3 javascript 库有疑问。我想用 azimuthal地球,我想从地球上的经度和纬度坐标插入点,并在不使用鼠标事件的情况下使地球动画化。

你认为这可能吗?你能给我一些关于如何做到这一点的好建议吗?

干杯
雷神

最佳答案

为了让示例自行旋转,我实现了:

var newX = 185;
var newY = -200;

function setupRotate() {
m0= [0,0];
o0 = projection.origin();
}

function rotate() {
if (m0) {
var m1 = [newX, newY];//d3.event.pageX, d3.event.pageY],
o1 = [o0[0] + (m0[0] - m1[0]) / 8, o0[1] + (m1[1] - m0[1]) / 8];
projection.origin(o1);
//console.log(m1);
circle.origin(o1)
refresh();
//console.log("rotate");
//console.log("newX: "+newX+" newY: "+newY);
}
}

function rotateInterval() {
var theRotationInterval = setInterval(rotateAndIncrement,1);
function rotateAndIncrement(){
//console.log("rotateAndIncrement");
if (newX === 3)//3065) {
{
//console.warn("!!Reset Rotation!!");
clearInterval(theRotationInterval);
newX = 185;
rotateInterval();
}
//console.log("newX: "+newX+" newY: "+newY);
else {
newX++;
rotate();
}
}
}

我正在向 map 添加点,它要复杂得多。如果我不能让它工作,我会在这里发帖。

关于animation - 动画 D3 地球仪 (d3.geo.azimuthal),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12769083/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com