Dave
Dave
on branch `issue58` (which inculdes `to_ndjson`)
I've also messed up my branches so I'm now going through and fixing a load of branch conflicts. However, your `paste0` statement is creating a vector of strings ```r paste0(c('{"abc":123}',...
Can you check how the ndjson is separated, is it by `\n`, or perhaps `\r\n`?
`from_ndjson` on this list objet returns the elements one-level deeper. This probably isn't right. ```r lst
can you give me the code you're using please?
Can you make it reproducible please, so I can copy it into my own R session and reproduce what you're doing?
The only way this is possible is to convert the geojosn to an `sf` object and use the `add_polygons()` ```r sf % add_polygons(data = sf, mouse_over = "SA2_NAME") ```
Can I suggest you try with [{mapdeck}](https://github.com/symbolixau/mapdeck) layers, as they can easily handle that many circles: ```r google_map(key = secret::get_secret("GOOGLE")) %>% mapdeck::add_dependencies() %>% mapdeck::add_polygon(data = sf, tooltip = "SA2_NAME") ```...
could you try openeing it in a browser?
`stroke_colour` is expecting either a value / column from `sf`, or a hex String: ```r output$map % mapdeck::add_polygon(data = sf,stroke_width = 5,stroke_colour = '#000000', tooltip = "SA2_NAME") }) ``` ---...