- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在下面的函数中,我这样做是有效的:
var land = topojson.feature(europe, europe.objects.nuts1);
但如果我这样做,它就会崩溃:
var europe_path = "europe.objects.nuts1";
var land = topojson.feature(europe, europe_path);
出现此错误 Uncaught TypeError: Cannot read property 'length' of undefined
如何将变量传递给topojson?
代码如下:
.border {
stroke: #000;
fill: none;
}
.graticule {
fill: none;
stroke: #777;
stroke-width: .5px;
stroke-opacity: .5;
}
div.tooltip {
position: absolute;
text-align: center;
width: 84px;
height: 64px;
padding: 2px;
font: 12px sans-serif;
background: lightgrey;
border: 0px;
border-radius: 8px;
pointer-events: none;
}
</style>
<body>
<h1>Administrative Sub-Regions of Europe</h1>
<select id="json_sources" name="json_sources">
<option value ="nuts1" selected>Source 1</option>
<option value ="nuts2">Source 2</option>
<!-- <option value ="source3.json">Source 3</option> -->
</select>
<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/colorbrewer.v1.min.js"></script>
<script src="https://cdn.rawgit.com/rveciana/d3-composite-projections/v0.2.0/composite-projections.min.js"></script>
<script>
var div = d3.select("body").append("div")
.attr("class", "tooltip")
.style("opacity", 0);
var width = 600,
height = 500;
var projection = d3.geo.conicConformalEurope();
var graticule = d3.geo.graticule();
var path = d3.geo.path()
.projection(projection);
// Find new colours here: http://colorbrewer2.org/
var scale = d3.scale.quantize().domain([10,60]).range(colorbrewer.PuRd[3]);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
svg.append("path")
.datum(graticule)
.attr("class", "graticule")
.attr("d", path);
var dropdown = d3.select("#json_sources")
var change = function() {
var source = dropdown.node().options[dropdown.node().selectedIndex].value;
var str1 = source;
var str2 = ".json";
var file = str1.concat(str2);
console.log(file);
var str_a = "europe.objects.";
var str_b = source;
var europe_path = str_a.concat(str_b);
console.log(europe_path);
d3.json(file, function(error, europe) {
d3.csv("povertry_rate.csv", function(error, povrate) {
var europe_path = "europe.objects.nuts1";
var land = topojson.feature(europe, europe_path);
data = {};
povrate.forEach(function(d) {
data[d.GEO] = d['2013'];
});
console.info(data);
svg.selectAll("path")
.data(land.features)
.enter()
.append("path")
.attr("d", path)
.style("stroke","#000")
.style("stroke-width",".5px")
.style("fill",function(d){
var value = data[d.id];
if (isNaN(value)){
value = data[d.id.substring(0,2)];
}
if (isNaN(value)){
return "#fff";
}
return scale(value);
})
.on("mouseover", function(d,i) {
var value = data[d.id];
if (isNaN(value)){
value = data[d.id.substring(0,2)];
}
div.transition()
.duration(200)
.style("opacity", 0.9);
div.html("<b>"+d.properties.name+"</b><br/>" + value + "%")
.style("left", (d3.event.pageX) + "px")
.style("top", (d3.event.pageY - 28) + "px");
})
.on("mouseout", function(d,i) {
div.transition()
.duration(500)
.style("opacity", 0);
});
svg
.append("path")
.style("fill","none")
.style("stroke","#000")
.attr("d", projection.getCompositionBorders());
});
})
}
dropdown.on("change", change)
change(); //trigger json on load
</script>
</body>
<!-- // d3.json("nuts2.json", function(error, europe) {
// }); -->
最佳答案
您将 europe_path 定义为字符串“europe.object.nuts1”而不是对象 europe.object.nuts1。删除引号并尝试。
编辑开始****
如果目标是允许用户在两层之间切换,您可以使用变量名动态加载 topojson,例如:
Toggle Topojson with file reload
采用与所提供代码类似的方法。
但是,如果目标是允许在两个或更多层之间切换,加载它们一次并切换可见性可能会更容易,如:
Toggle Topojson with visibility change
这通常会更顺畅和更快,因为不需要从重新加载的 topojson 文件重新计算路径。
编辑结束****
关于javascript - 将变量文件名传递给 topojson,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40454843/
我有美国州 topojson 和加拿大州 topojson 我想将它们合并到单个文件中。有人可以告诉我如何将两个文件合并为单个 topojson 文件。我在创建 map 时使用墨卡托投影 最佳答案 我
related question 我正在尝试向 topojson 文件添加外部属性,us-counties.json (使用 us-atlas 使用 make topo/us-counties.jso
我想将三个 geojson 文件合并为一个 topojson 文件。其中两个文件是非常简单的形状文件。他们不需要简化。 其中之一是10m文化自然地球矢量文件。它的 geojson 是 24.8mb。我
因此,使用 -s 标志从命令行简化使用 topojson 没有问题,但是,我不知道如何从 节点模块。 我看到一个 topojson.simplify() 方法,但由于没有文档,我不知道它是如何工作的。
刚开始使用 TopoJSON。所以我有一张来自 US Census site 的美国县 map 。我只需为每个州和每个州的县添加 State Codes和 County Names使用 TopoJso
我在玩 topojson 时玩得很开心,但在 topojson 的 V1 中似乎没有定义 topojson.object,而在 V0 中支持它。有人可以解释我如何解决这个问题吗?我正在尝试为格式为 t
据我了解,D3 中的 topojson.presimplify(JSON) 根据其重要性将 Z 坐标添加到输入 topojson 形状中的每个点,然后允许使用它进行动态简化,如http://bl.oc
有没有人看过美国国会选区的 topoJSON 文件?或者,如果我可以找到坐标或 geoJSON 文件,是否容易转换为弧线? 最佳答案 官方制图边界更有可能作为 shapefile 而不是 GeoJSO
我是 d3.js 的新手,我想使用 TopoJSON 创建 map ,这是我在示例中读取 json 文件时出现的问题,如 us.json 中的以下内容。 "counties": {
我尝试根据两个坐标对(作为起点和着陆点)为单次飞行制作动画。但是我遇到了错误: Error: attribute d: Expected number, "...". 来自 d3.js。 我不认为 d
在下面的函数中,我这样做是有效的: var land = topojson.feature(europe, europe.objects.nuts1); 但如果我这样做,它就会崩溃: var
我已经安装了 topojson w/homebrew,并且正在研究与帖子 Troubleshooting topojson installation 中的用户相同的教程。但当我打电话时没有得到任何结果
您好,我在绘制 topojson map 时遇到了一些问题。我的 topojson 文件具有以下属性: {"type":"Topology","arcs":[[[6566,5055] ... "tra
我在 https://github.com/mbostock/topojson/tree/master/examples 注意到 world-110m.json 和 world-110m2.json没
我正在使用 topojson 转换现有的 GeoJSON 数据集,但它没有保留属性。它遵循标准的 GeoJSON 格式,并将属性放置在与几何图形相同级别的“属性”对象中(下面的片段),但是当 topo
给定一个 data.tsv 文件: id code name 1 AL Alabama 2 AK Alaska 4 AZ Arizona 5 AR Arkansas 6
Topojson-svg 试用:我试了一下... curl -o uk.topo.json 'http://bost.ocks.org/mike/map/uk.json' #get an online
我是这方面的新手,基本上对自己在做什么一无所知。(仅供引用,我正在完成本教程: http://bost.ocks.org/mike/map/ ) 我正在尝试让 topojson 工作。我已经成功安装了
我一直在评估在给定投影的情况下将像素空间与距离(以实际单位表示)联系起来的不同方法。我发现以下内容非常有帮助: var actual_map_bounds = d3.geo.bounds(this_t
您好,我正在尝试在 jupyter 笔记本中使用 Folium 渲染这张 map 。 https://github.com/kthotav/TopoJSON-Maps/blob/master/usa/
我是一名优秀的程序员,十分优秀!