crazycapivara/deckgl

It is possible that Heatmap doesn't work?

dsanchezq opened this issue · 2 comments

Hi Crazycapivara,

I have a recent problem that doesn't happen a few months ago: the add_heatmap_layer function seems not to work. I can see the basemap but not the heatmap layer. I even try to do it with the example I found on your site, with sf_bike_parking data, and the same thing happens: I see the base map but not the heatmap.

Do you know how I can solve it?

Thank you very much

I am having the same issue
nevermind, this seems to work:

deckgl() %>%
  add_basemap() |> 
  add_layer("HeatmapLayer", 
            id = 'heat',
            data = sf_bike_parking,
            getPosition = ~lng + lat,
            getWeight = ~spaces) 

Thank you so much!!! Its working again