我正在将可重用的D3 v5图表切换为使用ES6类,并且在实现更新变量的功能(如缩放功能)时遇到麻烦。到目前为止,我有一张有效的地图:
class myMap{
constructor(args = {}){
this.data = args.data;
this.topo = args.topo;
this.element =document.querySelector(args.element);
this.width =args.width || this.element.offsetWidth;
this.height = args.height || this.width / 2;
this.setup();
}
setup(){
this.projection = d3.geoMercator()
.translate([(this.width/2), (this.height/2)])
.scale( this.width / 2 / Math.PI);
this.path = d3.geoPath().projection(this.projection);
// zoom fuction inserted here
this.element.innerHTML ='';
this.svg =d3.select(this.element).append("svg")
.attr("width", this.width)
.attr("height", this.height)
//.call(zoom)
.append("g");
this.plot = this.svg.append("g");
d3.json(this.topo).then( world => {
var topo = topojson.feature(world, world.objects.countries).features;
this.draw(topo);
});
}
draw(topo){
var country = this.plot.selectAll(".country")
.data(topo);
country.enter().insert("path")
.attr("class", "country")
.attr("d", this.path)
.attr('id', 'countries')
.attr("fill", #cde)
.attr("class", "feature");
}
//move(){} goes here
}
其调用方式为:
const chart = new myMap({
element: '#map',
data: DATA_IN_JSON,
topo:"../../../LINK_to_topojsonfile"});
使用函数时,我通过使用变量并调用move函数添加了缩放,并在SVG后面附加了.call(zoom)
:
var zoom = d3.zoom()
.scaleExtent([1, 9])
.on("zoom", move);
function move() {
g.style("stroke-width", 1.5 / d3.event.transform.k + "px");
g.attr("transform", d3.event.transform);
}
使用这些类,我尝试声明该类的setup()
部分的缩放,并调用移动形式.on("zoom", this.move)
并将一个call
函数附加到SVG,如上面的注释所示。但是我在引用Uncaught TypeError: Cannot read property 'style' of undefined at SVGSVGElement.move
this.plot
const zoom = d3.zoom()
.scaleExtent([1, 9])
.on("zoom", this.move);
move() {
this.plot
.style("stroke-width", 1.5 / d3.event.transform.k + "px");
this.plot
.attr("transform", d3.event.transform);
}
答案 0 :(得分:-1)
您需要绑定this
const zoom = d3.zoom()
.scaleExtent([1, 9])
.on("zoom", this.move.bind(this));
console.log this
内的move()