Skip to content

cran/leaflet.opacity

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

leaflet.opacity

General

leaflet.opacity extends the leaflet R package with the Leaflet.OpacityControls JavaScript plugin (LizardTech, 2013). It offers control buttons and a slider for adjusting the opacity of a layer.

Installation

You can install the released version of leaflet.opacity from CRAN with:

install.packages("leaflet.opacity")

or the latest version from GitHub with:

devtools::install_github("https://github.com/be-marc/leaflet.opacity", dependencies=TRUE)

Example

library(leaflet)
library(leaflet.opacity)
library(raster)

r <- raster(xmn = -2.8, xmx = -2.79, ymn = 54.04, ymx = 54.05, nrows = 30, ncols = 30)
values(r) <- matrix(1:900, nrow(r), ncol(r), byrow = TRUE)
crs(r) <- CRS("+init=epsg:4326")

leaflet() %>%
    addTiles() %>%
    addRasterImage(r, layerId = "raster") %>%
    addOpacitySlider(layerId = "raster")

Reference

LizardTech (2013). Leaflet.OpacityControls. Retrieved from https://github.com/lizardtechblog/Leaflet.OpacityControls

About

❗ This is a read-only mirror of the CRAN R package repository. leaflet.opacity — Opacity Controls for Leaflet Maps Report bugs for this package: https://github.com/be-marc/leaflet.opacity

Resources

Stars

Watchers

Forks

Packages

No packages published