Nothing
library(leaflet.extras)
library(magrittr)
#' Quakes
#'
#'
leaflet(quakes) %>% addProviderTiles(providers$CartoDB.DarkMatter) %>%
setView( 178, -20, 5 ) %>%
addHeatmap(lng = ~long, lat = ~lat, intensity = ~mag,
blur = 20, max = 0.05, radius = 15)
#' <br/><br/>
#' Roughly 1500 points dataset
#'
library(sp)
jsURL <- "https://rawgit.com/Norkart/Leaflet-MiniMap/master/example/local_pubs_restaurant_norway.js"
v8 <- V8::v8()
v8$source(jsURL)
geoJson <- geojsonio::as.json(v8$get("pubsGeoJSON"))
#'
#'
spdf <- geojsonio::geojson_sp(geoJson)
leaflet(spdf) %>%
addProviderTiles(providers$CartoDB.DarkMatter) %>%
addHeatmap(blur = 20, max = 0.05, radius = 15)
#'
#'
spdf1 <- geojsonio::geojson_sf(geoJson)
leaflet(spdf1) %>%
addProviderTiles(providers$CartoDB.DarkMatter) %>%
addHeatmap(blur = 20, max = 0.05, radius = 15,
gradient = "Spectral")
#' <br/><br/>10,000 points
#'
#'
jsURL <- "http://leaflet.github.io/Leaflet.markercluster/example/realworld.10000.js"
v8 <- V8::v8()
v8$source(jsURL)
df <- data.frame(v8$get("addressPoints"), stringsAsFactors = F) %>%
magrittr::set_colnames(c("lat", "lng", "intensity")) %>%
dplyr::mutate(
lat = as.numeric(lat),
lng = as.numeric(lng)
)
#' <br/><br/>Size in Meters
#'
#'
leaflet(df) %>%
addProviderTiles(providers$CartoDB.Positron) %>%
addHeatmap(lng = ~lng, lat = ~lat,
blur = 20, max = 0.05, radius = 15 )
#' <br/><br/>
london_crimes_files <- Sys.glob(
paste0(system.file("examples/data/London-Crimes", package = "leaflet.extras"),
"/*/*-city-of-london-street.csv.zip"))
london_crimes <- suppressMessages(
purrr::map(
london_crimes_files,
~readr::read_csv(.) %>%
dplyr::select(Latitude, Longitude) %>%
dplyr::filter(!is.na(Latitude))) %>%
magrittr::set_names(basename(Sys.glob(
paste0(system.file("examples/data/London-Crimes", package = "leaflet.extras"),
"/2016*")))))
leaf <- leaflet() %>%
addProviderTiles(providers$CartoDB.Positron)
purrr::walk(
names(london_crimes),
function(month) {
leaf <<- leaf %>%
addHeatmap(
data = london_crimes[[month]],
layerId = month, group = month,
lng = ~Longitude, lat = ~Latitude,
blur = 20, max = 0.05, radius = 15)
})
leaf %>%
setView(-0.094106, 51.515, 14) %>%
addLayersControl(
baseGroups = names(london_crimes),
options = layersControlOptions(collapsed = FALSE)
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.