gpt4 book ai didi

javascript - D3.js - 使用下拉菜单缩放到 bbox

转载 作者:行者123 更新时间:2023-11-27 22:53:32 25 4
gpt4 key购买 nike

在 map 上,我想放大特定国家/地区的 bbox,并使用包含这些国家/地区的名称或 ID 的下拉菜单。

借助以下示例,我通过单击国家/地区来实现此目的:https://bl.ocks.org/mbostock/4699541 。但现在我不想通过单击国家/地区来做到这一点,而是当我在下拉菜单中选择它时。

我在这里找到了一些答案:putting the country on drop down list using d3 via csv file 。但它在我的情况下不起作用(我认为问题出在“jsonOutside.features.forEach(function (d)”部分)。

我尝试这样做,但它不起作用:

d3.select("#zoom").on("change", function() {    //trying to zoom on the bbox with the dropdown menu     
var selected = this.value; //but it doesn't work
clicked(selected);
});

我在这段代码中放置了一个 console.log,它返回正确的值(国家/地区的 ID)。我也在“clicked”函数中完成了这一操作,它返回了一个对象。所以我认为问题在于我的下拉菜单仅包含国家/地区名称,而不包含单击的函数使用的对象。

这是我的其余代码:

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="http://d3js.org/queue.v1.min.js"></script>

<style type="text/css">
#form {
width: 20%;
padding-top: 200px;
margin-left: 2%;
}

#svg {
display: block;
margin-left: 30%;
margin-top: -300px;
border: 1px;
}

#map {
border: 2px;
}

</style>
</head>

<body>
</div>
<form id="form">
<fieldset>
<legend>Zoom on</legend>
<div>
<select id="zoom">
<option value="01">01</option> //options containing the countries id
<option value="02">02</option>
<option value="03">03</option>
</select>
</div>
</fieldset>
</form>
<div id="map"></div>
</div>
</body>
</html>
<script type="text/javascript">
var width = 600, height = 550, centered;

var path = d3.geo.path();

var projection = d3.geo.conicConformal() //focus on the topojson
.center([2.454071, 47.279229])
.scale(3000)
.translate([width / 2, height / 2]);

path.projection(projection);

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

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

function clicked(d) { //zoom on bbox function
var x, y, k;

if (d && centered !== d) {
var centroid = path.centroid(d);
x = centroid[0];
y = centroid[1];
k = 4;
centered = d;
} else {
x = width / 2;
y = height / 2;
k = 1;
centered = null;
}

svg.selectAll("path")
.classed("active", centered && function(d) { return d === centered; });

svg.transition()
.duration(750)
.attr("transform", "translate(" + width / 2 + "," + height / 2 + ")scale(" + k + ")translate(" + -x + "," + -y + ")")
.style("stroke-width", 1.5 / k + "px");
}

d3.json('https://gist.githubusercontent.com/PierreVivet/f46c2fe235ec7d7ab2db3dbaa163cc50/raw/f2f3fb092beb94f3a0582a9a82a040fa789028c1/departements.json', function(req, data) {
data.objects.territoire.geometries.forEach(function (d) {
d.properties = {};
d.properties.code = d.code;
});

departments.selectAll("path")
.data(topojson.feature(data, data.objects.territoire).features)
.enter()
.append("path")
.attr("d", path)
.attr('id', function(d) {return "d" + d.properties.code;})
.style("fill", "white")
.style("stroke", "black")
.style("stroke-width", ".5px")
.on("click", clicked); //the function works fine by clicking on the country
});

d3.select("#zoom").on("change", function() { //trying to zoom on the bbox with the dropdown menu
var selected = this.value; //but it doesn't work
clicked(selected);
});
</script>

您对如何做到这一点有什么想法吗?

谢谢

最佳答案

我找到了问题的答案。

我已经接近它了,唯一的问题是我用 html 手动创建了选择菜单。重点是直接使用 d3 创建并填充它,因此我们可以使用带有右侧“d”的 onclick 函数。

使用的代码如下:

var select = d3.select('#map')
.append('select')

select.selectAll("option")
.data(topojson.feature(data, data.objects.territoire).features)
.enter().append("option")
.text(function(d) { return d.properties.code; })
.on("click", function(d) { clicked(d); });

这并不是很复杂,但由于我对 D3 还很陌生,所以我需要了解语法。

感谢 Lars Kotthoff 在这里找到的答案:https://groups.google.com/forum/#!topic/d3-js/g6PLMZbRLvs

关于javascript - D3.js - 使用下拉菜单缩放到 bbox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37835815/

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