d3 map mouseover事件响应慢

时间:2015-01-22 14:12:48

标签: javascript d3.js

我正在处理d3地图,并且需要在多边形(区域)上发生mouseover事件。我有它工作,但它有点慢,我不知道为什么!这是screencast

更奇怪的是,我有一个比上面更大的(以kb为单位)的GeoJSON文件,但是那个speed is acceptable

这里发生了什么?以及如何改善mouseover事件的页面加载时间和响应能力?

地图代码

var width  = 1000;
var height = 1100;
var rotate = 60;        // so that [-60, 0] becomes initial center of projection
var maxlat = 55;        // clip northern and southern poles (infinite in mercator)

// normally you'd look this up. this point is in the middle of uk
var center = [-1.485000, 52.567000];

// instantiate the projection object
var projection = d3.geo.conicConformal()
                  .center(center)
                  .clipAngle(180)
                  // size of the map itself, you may want to play around with this in
                  // relation to your canvas size
                  .scale(10000)
                  // center the map in the middle of the canvas
                  .translate([width / 2, height / 2])
                  .precision(.1);

var zoom = d3.behavior.zoom()
    .scaleExtent([1, 15])
    .on("zoom", zoomed);

var svg = d3.select('#map').append('svg')
            .attr('width', width)
            .attr('height', height);

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

svg.call(zoom).call(zoom.event);

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

d3.json("data/map-england.json", function(err, data) {

  g.selectAll('path')
    .data(data.features)
    .enter().append('path')
      .attr('d', path)
      .attr('class', 'border')
      .attr('stroke-width', '.5')
      .attr('id', function(d) { return d.properties.Name; })
      .on("mouseover", function(d) {
        d3.select(this).classed("active", true );
      })
      .on("mouseout", function(d) {
        d3.select(this).classed("active", false );
      });
});

function zoomed() {
  g.attr("transform", "translate(" + d3.event.translate + ")scale(" + d3.event.scale + ")");
}

1 个答案:

答案 0 :(得分:1)

简化地图的路径就是答案。您需要Node及其软件包TopoJson。

在Windows上,我无法运行此程序包。我的主要问题是它的依赖性不支持Windows,以及依赖版本......等等。

所以我安装了一台运行Ubuntu的虚拟机,我立即启动并运行。

我运行了-simplify-proportion命令并找回了一个简化版本的路径。这张地图非常流畅,反响灵敏。