canvas绘制信息提示框

需求场景:运维一个好早之前的项目,需要在通过iclient开发的地图上展示marker图标的同时,展示marker里的一些属性信息,没找到好用的api,所以就通过canvas自己来动态的画出来,画圆角矩形,再以marker方式添加到地图上,看起来还不错。其他gis框架有遇到差不多需求的,也可以使用这个方法来实现。

/**
 * 绘制提示框tooltips
 * @param text 文字内容
 * @param fontsize 字体大小
 * @param fontcolor 字体颜色
 * @param bgcolor 背景颜色
 * todo 框子高度默认为36,后面还可以拓展,做换行处理
 */
function getToolTipImg(text,fontsize,fontcolor,bgcolor) {

    var obj = {};

    var canvas = document.createElement('canvas');
    var width = getCanvasWidth(text,fontsize);
    var boundWidth = getCanvasWidth(text,fontsize)+32;//两边间距16+16
    canvas.width = boundWidth;
    canvas.height = 36;
    var context=canvas.getContext("2d");
    //画框子
    fillRoundRect(context, 0, 0, boundWidth, 30, 5, bgcolor);//rgba(0,0,0,0.7)

    context.font=fontsize+"px Arial";
    context.textBaseline = 'middle';
    context.fillStyle = fontcolor;

    var sw = boundWidth/2.0-width/2.0;//计算字体居中的开始位置

    context.fillText(text,sw,fontsize+2);

    var dataUrl = canvas.toDataURL('image/png');
    obj.url = dataUrl;
    obj.width = boundWidth;
    obj.height = 36;
    return obj;
}
function fillRoundRect(cxt, x, y, width, height, radius, /*optional*/ fillColor) {
    //圆的直径必然要小于矩形的宽高
    if (2 * radius > width || 2 * radius > height) { return false; }

    cxt.save();
    cxt.translate(x, y);
    //绘制圆角矩形的各个边
    drawRoundRectPath(cxt, width, height, radius);
    cxt.fillStyle = fillColor || "#000"; //若是给定了值就用给定的值否则给予默认值
    cxt.fill();
    cxt.restore();
}

function drawRoundRectPath(cxt, width, height, radius) {
    cxt.beginPath(0);
    //从右下角顺时针绘制,弧度从0到1/2PI
    cxt.arc(width - radius, height - radius, radius, 0, Math.PI / 2);

    //矩形下边线

    //绘制提示框那个尖尖角,强吧
    cxt.lineTo(width/2.0+4, height);
    cxt.lineTo(width/2.0, height+6);
    cxt.lineTo(width/2.0-4, height);

    cxt.lineTo(radius, height);

    //左下角圆弧,弧度从1/2PI到PI
    cxt.arc(radius, height - radius, radius, Math.PI / 2, Math.PI);

    //矩形左边线
    cxt.lineTo(0, radius);

    //左上角圆弧,弧度从PI到3/2PI
    cxt.arc(radius, radius, radius, Math.PI, Math.PI * 3 / 2);

    //上边线
    cxt.lineTo(width - radius, 0);

    //右上角圆弧
    cxt.arc(width - radius, radius, radius, Math.PI * 3 / 2, Math.PI * 2);

    //右边线
    cxt.lineTo(width, height - radius);
    cxt.closePath();
}

function getCanvasWidth(text,fontsize) {
    var canvas = document.createElement('canvas');
    var ctx=canvas.getContext("2d");
    ctx.font=fontsize+"px Arial";
    ctx.textBaseline = 'middle';
    var width = ctx.measureText(text).width;
    var boundWidth = width;
    return boundWidth;
}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>测试</title>
    <script src="canvas-tooltip.js"></script>
</head>
<body>
<img src="" id="show">
</body>
<script>

    document.getElementById("show").src = getToolTipImg("李小龙",14,"#fff","#1890FF").url;
</script>
</html>

 

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值