leafem icon indicating copy to clipboard operation
leafem copied to clipboard

leaflet extensions for mapview

Results 37 leafem issues
Sort by recently updated
recently updated
newest added

Hello. I'm trying to use the `interactive` option from leaflet while rendering a flatgeobuf file from `leafem::addFgb`, but I'm not getting the desired result: ``` r library(sf) library(leaflet) library(leafem) leaflet()...

the [examples in PMTiles](https://r-spatial.github.io/leafem/reference/paintRules.html) here show aesthetics like fill color as literal hex color values in the style, rather than being mapped to data columns: ``` paintRules( layer, fillColor =...

From @nekronaut https://github.com/r-spatial/mapview/issues/290: I am trying to save `mapview` generated maps including local images to html, using `addLogo` and `mapshot`. Although locally saved images are displayed in the viewer/browser, they...

I've just tried the following to no avail: ```{r} library(leafem) library(leaflet) url_rivers = "https://vector-tiles-data.s3.eu-central-1.amazonaws.com/rivers_africa.pmtiles" leaflet() %>% addTiles() %>% addPMPolylines( url = url_rivers , layerId = "rivers" , group = "rivers"...

Thank you for this package. It would be nice to update the package to use terra instead of raster, specifically the function "addImageQuery". ``` library(terra) library(leaflet) library(leafem) library(plainview) r %...

Hi everyone, The raster package announced it has been superseded by the "terra" package. [https://cran.r-project.org/web/packages/raster/index.html](url) Could addRasterRGB function support object in terra package in future? Such as SpatRaster created by...

This PR adds a function to re-map the colors of a leaflet layer on the fly. I had two closely related reasons for creating it: 1. I had generated some...

I'm testing `addCOG` with some data I have in an AWS S3 bucket. I tried to follow to the examples on other issues but cannot get a colored map, all...

👋🏽 I maintain the cran checks badges. Please change to the new cran checks badge URL (e.g., `https://badges.cranchecks.info/worst/dplyr.svg`). Old badges at (e.g. `https://cranchecks.info/badges/worst/dplyr`) will be unavailable as of Jan 1st...

Hi leafem Team! I'm wondering how can I try a COG RGB image (S2 or drone) base on your solution of `leafem:::addCog`. I have already work around single bands but...