I installed just the booklet map in brilliant, where brilliant server.R looks like this:
(please get RDS data from Dropbox for reproducible example)
Server .R
test_polygons <- readRDS('test_polygons.RDS')
ui.R
Although the user interface is pretty simple:
require(leaflet) require(shiny) ui <- fluidPage( column(width=12, leafletOutput("mymap", height="200px")
This works well on my desktop computer. However, as soon as I try to access it on my server, the booklet map loads terribly slowly. Especially if I change the height, say, by 100%, it generally stops loading. So here are my questions:
- How to speed up the boot process.
- Is it possible to download some details in advance, since everything reacts in this context.
- Can I create a card that does not depend on brilliance - perhaps this download will be faster.
- Is it possible that my polygons have a lot of details?
Thank you very much for your help!
source share