在jtopo 生成前,粘贴以下代码
CanvasRenderingContext2D.prototype.wrapText = function(str,x,y){
var textArray = str.split('\n');
if(textArray==undefined||textArray==null)return false;
var rowCnt = textArray.length;
var i = 0,imax = rowCnt,maxLength = 0;maxText = textArray[0];
for(;i<imax;i++){
var nowText = textArray[i],textLength = nowText.length;
if(textLength >=maxLength){
maxLength = textLength;
maxText = nowText;
}
}
var maxWidth = this.measureText(maxText).width;
var lineHeight = this.measureText("元").width;
x-= lineHeight*2;
for(var j= 0;j<textArray.length;j++){
var words = textArray[j];
this.fillText(words,-(maxWidth/2),y-textArray.length*lineHeight/100);
y+= lineHeight;
}
};
然后
var node = new JTopo.Node(data[i].name+"\n"+data[i].xinxi); // 创建一个节点
node.paintText = function(a){
a.beginPath(),
a.font = this.font,
a.wrapText(this.text,this.height/2,this.height);
a.closePath()
};
即可
CanvasRenderingContext2D.prototype.wrapText = function(str,x,y){
var textArray = str.split('\n');
if(textArray==undefined||textArray==null)return false;
var rowCnt = textArray.length;
var i = 0,imax = rowCnt,maxLength = 0;maxText = textArray[0];
for(;i<imax;i++){
var nowText = textArray[i],textLength = nowText.length;
if(textLength >=maxLength){
maxLength = textLength;
maxText = nowText;
}
}
var maxWidth = this.measureText(maxText).width;
var lineHeight = this.measureText("元").width;
x-= lineHeight*2;
for(var j= 0;j<textArray.length;j++){
var words = textArray[j];
this.fillText(words,-(maxWidth/2),y-textArray.length*lineHeight/100);
y+= lineHeight;
}
};
然后
var node = new JTopo.Node(data[i].name+"\n"+data[i].xinxi); // 创建一个节点
node.paintText = function(a){
a.beginPath(),
a.font = this.font,
a.wrapText(this.text,this.height/2,this.height);
a.closePath()
};
即可