It is possible that Heatmap doesn't work?
dsanchezq opened this issue · 2 comments
dsanchezq commented
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
jvandens commented
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)
dsanchezq commented
Thank you so much!!! Its working again