Skip to content

Commit 79469e0

Browse files
bhaskarvkjcheng5
authored andcommitted
Fixes #7 (#285)
1 parent e2751ff commit 79469e0

File tree

4 files changed

+13
-0
lines changed

4 files changed

+13
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
.RData
44
node_modules
55
inst/htmlwidgets/sources
6+
*.swp

DESCRIPTION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Imports:
3737
htmltools,
3838
magrittr,
3939
markdown,
40+
methods,
4041
png,
4142
RColorBrewer,
4243
raster,

NAMESPACE

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,12 @@ export(setMaxBounds)
9393
export(setView)
9494
export(showGroup)
9595
export(tileOptions)
96+
importFrom(grDevices,col2rgb)
97+
importFrom(grDevices,rgb)
9698
importFrom(htmlwidgets,JS)
9799
importFrom(magrittr,"%>%")
100+
importFrom(methods,substituteDirect)
101+
importFrom(stats,na.omit)
102+
importFrom(stats,quantile)
103+
importFrom(utils,getFromNamespace)
104+
importFrom(utils,packageVersion)

R/package.R

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#' @importFrom magrittr %>%
22
#' @export %>%
33
#' @importFrom htmlwidgets JS
4+
#' @importFrom grDevices col2rgb rgb
5+
#' @importFrom methods substituteDirect
6+
#' @importFrom stats na.omit quantile
7+
#' @importFrom utils getFromNamespace packageVersion
48
#' @export JS
59
NULL

0 commit comments

Comments
 (0)