pa7 / heatmap.js

🔥 JavaScript Library for HTML5 canvas based heatmaps
https://www.patrick-wied.at/static/heatmapjs/
MIT License
6.23k stars 1.32k forks source link

heatmap-leaflet.js broken _draw on radiusValue #70

Open jimRsmiley opened 11 years ago

jimRsmiley commented 11 years ago

I couldn't get heatmap-leaflet.js working until I fixed line 173 from:

radiusValue = this.options.radius.value;

to

radiusValue = this.options.radius;

nickbenes commented 10 years ago

Same issue, but I fixed it by changing to radiusValue = this.options.radius.valueOf();