我尝试使用 d3.js 和三个数据文件制作地图:
首先,我使用以下代码创建了我的基本地图:
var width = 360,
height = 600,
width2 = 479;
var proj = d3.geo.mercator()
.center([7.76, 48.57])
.scale(130000)
.translate([width / 2, height / 2]);
var path = d3.geo.path()
.projection(proj);
var svg = d3.select("#carte").append("svg")
.attr("width", width)
.attr("height", height);
d3.json("strasbourg.json", function(error, base) {
svg.append("path")
.data(topojson.feature(base, base.objects.contour).features)
.attr("class", "fond-stras")
.attr("d", path);
结果很好(http://raphi.m0le.net/data/BAS/App_d3_strasrk/etape%201.html),所以我的代码更复杂:
var width = 360,
height = 600,
width2 = 479;
var proj = d3.geo.mercator()
.center([7.76, 48.57])
.scale(130000)
.translate([width / 2, height / 2]);
// This array will be used to the next choropleth
var couleurs = ['rgb(165,15,21)','rgb(222,45,38)','rgb(251,106,74)',
'rgb(252,146,114)','rgb(252,187,161)','rgb(254,229,217)'];
var path = d3.geo.path()
.projection(proj);
var svg = d3.select("#carte").append("svg")
.attr("width", width)
.attr("height", height);
// I use queue.v1.min.js to load my .topojson, .geojson and .csv
queue()
.defer(d3.json,"strasbourg.json")
.defer(d3.json, "chute_ries.json")
.defer(d3.csv, "progression_riesk.csv")
.await(ready);
function ready(error,base,areas,results) {
// I declare my base map like before, it works always fine
svg.append("path")
.data(topojson.feature(base, base.objects.contour).features)
.attr("class", "fond-stras")
.attr("d", path);
// the problematic part begins here :
svg.append("g").attr("class","areas")
.selectAll("path")
.data(areas.features)
.enter()
.append("path")
.attr("class", "area")
.attr("d", path)
// I write this to test an automatic colouring
.attr("fill", function(d,i){
if (results[i].diff_ries<-23){
return couleurs[0]
}
else {return couleurs[4]
}
})
不幸的是,它不起作用,您将在此处看到:http://raphi.m0le.net/data/BAS/App_d3_strasrk/etape%202.html
尽管我付出了努力,但我还是无法让它发挥作用。我的 .geojson 是使用QGis创建的,所以我猜它尊重右手规则。
我的控制台没有显示任何错误,因此我无法确定错误。我怀疑它可能是data()
声明,但是我已经看过几个例子,它们用 .geojson 数据编写,并且工作得很好。
答案 0 :(得分:0)
这有点棘手,但问题来自我原始文件的投影:Lambert-93(法语参考),而不是在剧本中精确的墨卡托!
我用Mercator投影重新保存了文件,并且所有工作都很好!