-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fade screen when updating map #393
Comments
what / where is this class? |
ok I think you've found this issue in the latest version of I think you can put the temporary fix in the ui = fluidPage(
title = "Mapdeck add feature",
tags$head(
tags$style(
HTML(
".mapdeckmap.recalculating {
--shiny-fade-opacity: 1;
}"
)
)
),
fluidRow(
mapdeckOutput("map", height = '800', width = '101%')
)
) But I haven't tested this. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
I am working on a shiny app where you can click on the map and add a point based on the coordinates of the click. The new point details are added to a reactive dataframe however I have encountered an issue where the map fades out after it has been updated with the new point. The new point can be seen on the map so it is added correctly but not sure why it fades. The map is still functional and you can keep adding new points but it remains faded.
Screenshots
To Reproduce
The text was updated successfully, but these errors were encountered: