manuelnas / CesiumHeatmap

A library to add heatmaps (using heatmap.js) to the Cesium framework.
MIT License
153 stars 110 forks source link

k.data is now readonly in Chrome. Remove unnecessary assignment. #14

Open raycrummey opened 4 years ago

raycrummey commented 4 years ago

the line l = k.data sets the reference to k.data, so if you change l it changes k.data.

This line throws an exception k.data is now readonly in Chrome. It is not needed.