2016-03-17 46 views

回答

1

主要原因是您在heatLayer參數中評論了gradient屬性。

然後你需要增加max屬性,因爲你的點的強度值高於1。

嘗試與

var heat = L.heatLayer(quakepoints,{ 
     radius: 20, 
     blur: 15, 
     maxZoom: 10, 
     max: 4.0, 

     gradient: { 
      0.0: 'green', 
      0.5: 'yellow', 
      1.0: 'red' 
     } 
    }).addTo(map); 

你必須從0%的人認爲梯度指數(0.0至1.0)作爲光標到您的最大強度

的100%,這是結果.. 。 enter image description here

看看你會得到什麼,如果你(在這種情況下3.2)降低最高屬性的東西更接近你的最高強度值

enter image description here

+0

我錯過了「最大」配置。謝謝。 –