我正在使用Mike Bostock's Choropleth example for US counties。
我完全使用我的数据,但我无法按照我在其他示例中看到的那样进行扩展。我需要一次放大一个州的中心。如有必要,可对其进行静态编程。
我已尝试添加此功能,但它严重扭曲了结果,因此我假设它不是正确的实现:
var unemployment = d3.map();
var projection = d3.geoAlbersUsa()
.translate([ width/ 2, height/ 2]) .scale([500]);
var path = d3.geoPath(projection);
转换和缩放此投影的正确语法是什么?
已添加:Here is a link to a Plukr showing what I'm getting as my incorrect results.