给出vite框架下cesium中利用heatmap.js绘制热力图的代码
时间: 2023-03-07 22:08:07 浏览: 273
基于vue3+vite+cesium 生成热力图CesiumHeatmap源码
5星 · 资源好评率100%
示例代码:import {Heatmap} from 'heatmap.js';let heatmap = Heatmap.create({
container: document.getElementById('container'),
});heatmap.setData({
max: 100,
data: [
{ x: 10, y: 15, value: 5 },
{ x: 20, y: 35, value: 10 },
{ x: 30, y: 55, value: 20 },
],
});
阅读全文