gpt4 book ai didi

html - d3.js topojson map 的样式填充未完全填充

转载 作者:太空宇宙 更新时间:2023-11-03 21:34:28 25 4
gpt4 key购买 nike

我正在尝试向 topojson map 添加颜色。当我添加填充时,我得到了一个非常奇怪的输出,其中一些颜色发生了变化,但其中的随机 strip 与以前相同。灰色图像是我添加填充之前的图像。我希望第二张 map 完全是橙色的。

without fill

with fill

代码如下:

<!DOCTYPE html>
<meta charset="utf-8">
<style>
path {
stroke: white;
stroke-width: 0.25px;
fill: grey;
}

</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script>
var width = 1200,
height = 1200;

var projection = d3.geo.mercator()
.center([0, 5 ])
.scale(200)
.rotate([-180,0]);

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

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

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


// load and display the World
d3.json("us_states.json", function(error, us) {
g.append("g")
.attr("id", "states")
.selectAll("path")
.data(topojson.feature(us, us.objects.states).features)
.enter().append("path")
.attr("d", path)
.style("fill", "#ffc04c"); //this is the offending line

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

});
var zoom = d3.behavior.zoom()
.on("zoom",function() {
g.attr("transform","translate("+
d3.event.translate.join(",")+")scale("+d3.event.scale+")");
g.selectAll("circle")
.attr("d", path.projection(projection));
g.selectAll("path")
.attr("d", path.projection(projection));

});
svg.call(zoom)

</script>
</body>
</html>

最佳答案

问题实际上不在状态本身的 path 中(您突出显示的行),而是在您之后附加的状态边界中——根据您的 CSS,这就是您所看到的。

要修复,请在 CSS 中为 path 设置 fill: none

关于html - d3.js topojson map 的样式填充未完全填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27493608/

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