Unam-B / leaflet

R Interface to Leaflet Maps

Home Page:http://rstudio.github.io/leaflet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

An R Interface to Leaflet Maps

Build Status

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 layer

m = m %>% setView(-93.65, 42.0285, zoom = 17)
m

m %>% addPopups(-93.65, 42.0285, 'Here is the <b>Department of Statistics</b>, ISU')

This package is not on CRAN yet, and you can install it from Github:

if (!require('devtools')) install.packages('devtools')
devtools::install_github('rstudio/leaflet')

License

This package is licensed to you under the terms of the GNU General Public License version 3 or later.

Copyright 2013-2014 RStudio, Inc.

About

R Interface to Leaflet Maps

http://rstudio.github.io/leaflet


Languages

Language:JavaScript 73.1%Language:R 21.1%Language:CSS 5.8%