1

离开 d3.js 几个月了……我继承了一张简单的美国地图,其中包含其他人开始的功能。

这些特征由不同大小的简单点表示。

我想为每个点添加发射的同心圆,类似于 Mike Bostock 的经典 Onion 示例:http://bl.ocks.org/mbostock/4503672 (虽然看起来不那么不祥)

我在这里设置了一个块:http: //bl.ocks.org/mbostock/4503672

(不确定为什么块中的状态没有正确渲染,但这可能无关紧要。)

在迈克的例子中,只有一个点,所以我很难理解如何将他所做的翻译成我所拥有的(很多点)。

这是我的脚本:

/**
 * Page initialization
 */
$(function() {
    renderMap('#map-container');
});

function renderMap(container) {
    var width = 960,
        height = 500,
        active;

    var projection = d3.geo.albersUsa()
        .scale(960)
        .translate([width / 2, height / 2]);

    var path = d3.geo.path()
        .projection(projection);

    var radius = d3.scale.sqrt()
        .domain([0, 1e7])
        .range([0, 10]);

    var path2 = d3.geo.path()
        .projection(projection);

    //  Remove svg, if already exist
    d3.select(container).select('svg').remove();

    var svg = d3.select(container).append("svg")
        .attr("width", width)
        .attr("height", height);

    svg.append("rect")
        .attr("width", width)
        .attr("height", height);
        //.on("click", reset);

    var g = svg.append("g");

    queue()
        .defer(d3.json, "/mbostock/raw/4090846/us.json")
        .defer(d3.json, "dots.json")
        .await(function (error, us, centroid) {
            g.append("g")
                .attr("id", "states")
                .selectAll("path")
                .data(topojson.feature(us, us.objects.states).features)
                .enter().append("path")
                .attr("d", path)
                .attr("class", "state");
                //.on('click', click);

            g.append('path')
                .attr("id", "state-borders")
                .datum(topojson.mesh(us, us.objects.states, function(a, b) { return a !== b; }))
                .attr("d", path)
                .attr("class", "mesh");

            var dots = g.append("g")
                .attr("id", "dots")
                .selectAll("path")
                .data(centroid.data)
              .enter().append("path")
                .attr("class", "dot")
                .attr("d", path2.pointRadius(function(d) { return radius(d.properties.pool); }));
        }    
    );

 }

迈克制作戒指的例子的关键部分是:

setInterval(function() {
  svg.append("circle")
      .attr("class", "ring")
      .attr("transform", "translate(" + projection([100, -8]) + ")")
      .attr("r", 6)
      .style("stroke-width", 3)
      .style("stroke", "red")
    .transition()
      .ease("linear")
      .duration(6000)
      .style("stroke-opacity", 1e-6)
      .style("stroke-width", 1)
      .style("stroke", "brown")
      .attr("r", 160)
      .remove();
}, 750);

如何将圆环定位在点上?

4

1 回答 1

2

查看这两种方法之间的差异,以进一步了解函数式/声明式编程如何抽象出迭代编程的痛苦。

使用 D3 习语的方法:

小提琴:http: //jsfiddle.net/blakedietz/E66eT/1/

更新:D3 方式

<!DOCTYPE html>
<html>
<head>
    <title></title>

    <style>
        body {
              background: #192887;
            }

            .graticule {
              fill: none;
              stroke: #fff;
              stroke-width: .5px;
            }

            .land {
              fill: #007421;
            }

            .dot {
              fill: #c7141a;
            }

            .ring {
              fill: none;
              stroke: #c7141a;
            }
    </style>

    <script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
</head>
<body>
<script>

var width = 960,
    height = 500;

var projection = d3.geo.mercator()
    .center([113, -3])
    .scale(1275)
    .translate([width / 2, height / 2])
    .clipExtent([[0, 0], [width, height]])
    .precision(.1);

var path = d3.geo.path()
    .projection(projection);

var graticule = d3.geo.graticule()
    .step([5, 5]);

var svg = d3.select("body").append("svg")
    .attr("width", width)
    .attr("height", height);

svg.append("path")
    .datum(graticule)
    .attr("class", "graticule")
    .attr("d", path);


var data = [{x:-8,y:100},{x:-10,y:110},{x: -12,y:120}];

svg.selectAll("circle")
    .data(data)
    .enter()
    .append("circle")
    .attr("class","dot")
    .attr("transform",translateCircle)
    .attr("r",8);


function translateCircle(datum, index)
          {
            return "translate(" +  projection([datum.y, datum.x]) + ")";
          };

setInterval(function(){
              svg
                .selectAll("ring")
                .data(data)
                .enter()
                .append("circle")
                  .attr("class", "ring")
                  .attr("transform", translateCircle)
                  .attr("r", 6)
                  .style("stroke-width", 3)
                  .style("stroke", "red")
                .transition()
                  .ease("linear")
                  .duration(6000)
                  .style("stroke-opacity", 1e-6)
                  .style("stroke-width", 1)
                  .style("stroke", "brown")
                  .attr("r", 160)
                  .remove();
      }, 750)


d3.select(self.frameElement).style("height", height + "px");    
</script>

</body>
</html>

所以我没有为这个解决方案创建一个完全 d3 惯用的方法,但它会起作用。如果你能让它在 svg.selectAll("circle"/"unique selection"...) 等中隐式工作,那就更棒了。与此同时,我会努力解决这个问题。在那之前,有这种更明确的迭代方法。

在 Mike 的示例中,您只需在setInterval调用中将单个元素附加到 DOM。为了加快绑定过程,我创建了一个在一组坐标上操作的投影方法: translateCircle 将在一组坐标内的基准上操作,从而允许访问每个集合元素的内部属性。

在每次setInterval调用中,该forEach方法都会遍历坐标集合,然后在setInterval最初由 Mike 调用的方法中调用相同的内部结构。

不是这样 D3

    <style>
        body {
              background: #192887;
            }

            .graticule {
              fill: none;
              stroke: #fff;
              stroke-width: .5px;
            }

            .land {
              fill: #007421;
            }

            .dot {
              fill: #c7141a;
            }

            .ring {
              fill: none;
              stroke: #c7141a;
            }
    </style>

    <script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
</head>
<body>
<script>

var width = 960,
    height = 500;

var projection = d3.geo.mercator()
    .center([113, -3])
    .scale(1275)
    .translate([width / 2, height / 2])
    .clipExtent([[0, 0], [width, height]])
    .precision(.1);

var path = d3.geo.path()
    .projection(projection);

var graticule = d3.geo.graticule()
    .step([5, 5]);

var svg = d3.select("body").append("svg")
    .attr("width", width)
    .attr("height", height);

svg.append("path")
    .datum(graticule)
    .attr("class", "graticule")
    .attr("d", path);


var data = [{x:-8,y:100},{x:-10,y:110},{x: -12,y:120}];

svg.selectAll("circle")
    .data(data)
    .enter()
    .append("circle")
    .attr("class","dot")
    .attr("transform",translateCircle)
    .attr("r",8);


function translateCircle(datum, index)
          {
            return "translate(" +  projection([datum.y, datum.x]) + ")";
          };

setInterval(function(){
          data.forEach(function(datum)
          {
              svg
                .append("circle")
                  .attr("class", "ring")
                  .attr("transform", translateCircle(datum))
                  .attr("r", 6)
                  .style("stroke-width", 3)
                  .style("stroke", "red")
                .transition()
                  .ease("linear")
                  .duration(6000)
                  .style("stroke-opacity", 1e-6)
                  .style("stroke-width", 1)
                  .style("stroke", "brown")
                  .attr("r", 160)
                  .remove();
          })
      }, 750)


d3.select(self.frameElement).style("height", height + "px");    
</script>

</body>
</html>
于 2014-02-01T03:02:01.510 回答