You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Leaflet is an open-source JavaScript library for
interactive maps. This R package makes it easy to create Leaflet maps from R.
library(leaflet)
m= leaflet() %>% addTiles()
m# a map with the default OSM tile layerm=m %>% setView(-93.65, 42.0285, zoom=17)
mm %>% addPopups(-93.65, 42.0285, 'Here is the <b>Department of Statistics</b>, ISU')
Installation
You can install this package from CRAN, or the development version from GitHub:
# CRAN version
install.packages('leaflet')
# Or Github versionif (!require('devtools')) install.packages('devtools')
devtools::install_github('rstudio/leaflet')
You can test that Node.js and yarn are installed properly by running the following commands:
node --version
yarn --version
To make additions or modifications to the JavaScript htmlwidgets binding layer,
you must have all Node.js dependencies installed. Now you can build/minify/lint/test using yarn build, or run in "watch" mode
by just running yarn watch. JS sources go into javascript/src and tests go into
javascript/tests.