Emil Mahler Larsen
Emil Mahler Larsen
I can confirm the same issue in the Leaflet.extras2 package for R that uses this plugin.
The bug occurs in version 84.0.4147.135 and 85.0.4183.83. @MrOttimista can you try upgrading? So maybe this bug was introduced with the newer versions of Chrome.
I wasn't aware of https://github.com/the-benchmarker/web-frameworks, thanks for the link. With TechEmpower, you aren't allowed to cache results - they have to be processed one at a time. The focus is...
> ```r > #' @filter cors > cors > res$setHeader("Access-Control-Allow-Origin", "*") > > if (req$REQUEST_METHOD == "OPTIONS") { > res$setHeader("Access-Control-Allow-Methods","*") > res$setHeader("Access-Control-Allow-Headers", req$HTTP_ACCESS_CONTROL_REQUEST_HEADERS) > res$status return(list()) > } else {...
@meztez the value of `req` is `` while `req$HTTP_ORIGIN` is `null`. In order to find this, I did: ``` # Enable CORS Filtering #' @filter cors cors
There appears to be three variables it could be when `HTTP_SEC_FETCH_MODE == "cors"`: 1. `req$HTTP_REFERER` 2. `req$HTTP_HOST` 3. `req$REMOTE_ADDR` I went with the first, as follows: ```r # Enable CORS...
The above solution is unstable, and you can never see the swagger documentation. Right now I have this working solution (implemented without fully understanding `plumber::forward()`): ````r # Enable CORS Filtering...
@shotchki did you solve this? I am having the same problem with a graph network.
Here is a simple workaround - no new functionality is needed: ``` observeEvent(input$mymap_groups,{ leafletProxy('mymap') %>% removeControl(layerId = "basegroup_legend_1") %>% removeControl(layerId = "basegroup_legend_2") if ('basegroup_layer_1' %in% isolate(input$mymap_groups)){ leafletProxy('mymap') %>% addLegend(position =...
Unfortunately shiny.router still doesn't work with ShinyProxy - running with shiny.router 0.1.1 and ShinyProxy 2.1.0. I've tried debugging it, but gotten no where. Has anyone else had success running shiny.router...