diff --git a/examples/heatmap/main.js b/examples/heatmap/main.js index e6b8d11be5..17b3e04bd8 100644 --- a/examples/heatmap/main.js +++ b/examples/heatmap/main.js @@ -33,8 +33,8 @@ $(function () { }; }) .maxIntensity(20) - .style('radius', 5) - .style('blurRadius', 15) + .style('radius', 15) + .style('blurRadius', 30) .style('opacity', 1.0); map.draw(); } diff --git a/src/canvas/heatmapFeature.js b/src/canvas/heatmapFeature.js index b1f2b216ed..30c0f301f5 100644 --- a/src/canvas/heatmapFeature.js +++ b/src/canvas/heatmapFeature.js @@ -32,17 +32,6 @@ var canvas_heatmapFeature = function (arg) { s_init = this._init, s_update = this._update; - //////////////////////////////////////////////////////////////////////////// - /** - * Build - * @override - */ - //////////////////////////////////////////////////////////////////////////// - this._build = function () { - s_update.call(m_this); - return m_this; - }; - //////////////////////////////////////////////////////////////////////////// /** * Meta functions for converting from geojs styles to canvas. @@ -189,10 +178,6 @@ var canvas_heatmapFeature = function (arg) { //////////////////////////////////////////////////////////////////////////// this._update = function () { s_update.call(m_this); - if (m_this.buildTime().getMTime() <= m_this.dataTime().getMTime() || - m_this.updateTime().getMTime() < m_this.getMTime()) { - m_this._build(); - } m_this.updateTime().modified(); return m_this; };