我正在使用Heatmap.js创建可点击的热图。我尝试以下代码失败。
正在显示图例,但是在画布上单击并未像supposed to那样生成热图。
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" src="heatmap.js"></script>
</head>
<body>
<script type="text/javascript">
window.onload = function(){
// heatmap configuration
var config = {
element: document.getElementById("heatmapArea"),
radius: 30,
opacity: 50,
legend: {
position: 'br',
title: 'Example Distribution'
}
};
//creates and initializes the heatmap
var heatmap = h337.create(config);
document.getElementById("heatmapArea").onclick = function(e){
heatmap.store.addDataPoint(e.layerX, e.layerY, 1);
};
};
</script>
<div id ="heatmapArea">
</div>
</body>
</html>
答案 0 :(得分:1)
在他们的示例中,看起来他们的div
包含一些样式定义和一个类:
<div id="heatmapArea" class="well" style="width:610px;padding:0;height:400px;cursor:pointer;position:relative;"></div>
但是,您可能只需要向height
添加width
和div
。
这里是EXAMPLE