Kent Johnson

Results 12 comments of Kent Johnson

Oh, sorry if that was confusing, the PR is from my alter-ego.

I don't know if it is documented anywhere, but you can use the `output` variable in a RMarkdown Shiny document. This allows use of the `plotOutput`, etc. For example, the...

The CSS for the loader doesn't seem to be inserted into the document.

I have had good results with the alternate form of error handling - catch the `RserveException` and try to call `geterrmessage()` and `traceback()` for more details. `geterrmessage()` has been very...

Yes, I will try two more round trips to the server; one for geterrmessage() and one for traceback(). My server is running on the same machine as the client so...

The problem seems to be in `LayerManager`'s `handleFilter` and `handleSelection` methods, which don't expect `ctg[key]` to contain multiple values. Here is a failing example that uses both filtering and selection:...

Here is the (working) `leaflet` version: ``` library(shiny) library(sf) library(leaflet) ui

From here: https://stackoverflow.com/questions/59585109/filtering-data-reactively-to-generate-maps/59585256

Replacing `renderMapview` with the below function makes this example work. I don't really understand what `substitute` is doing here so I don't know if there might be other implications to...

ISTM that `renderMapview` should either be fixed or removed (or deprecated with a note to use `renderLeaflet(map@map)` instead.