We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ddaf3d commit 0cfd49bCopy full SHA for 0cfd49b
1 file changed
app.R
@@ -1,10 +1,13 @@
1
+# install mapgl if not already installed
2
+list.of.packages <- c("mapgl")
3
+new.packages <- list.of.packages[!(list.of.packages %in% installed.packages()[,"Package"])]
4
+if(length(new.packages)) install.packages(new.packages)
5
+
6
+library(mapgl)
7
library(shiny)
8
library(bslib)
-library(mapgl)
9
library(shinythemes)
10
-bounds = readRDS("data/bounds.rds")
-
11
ui <- page_sidebar(
12
title = "Map the gaps!",
13
0 commit comments