update_leaflet_elementId {RchivalTag} | R Documentation |
update elementID of the leaflet map to avoid rendering issues in RMarkdown
Description
This function updates the elementID of the leaflet map to avoid rendering issues when plotting the same map twice in RMarkdown.
Usage
update_leaflet_elementId(map)
Arguments
map |
a leaflet map |
Value
the same leaflet map with an updated elementIDs.
Author(s)
Robert K. Bauer
See Also
Examples
## only valid in RMarkdown chunks:
# kmz_file2 <- system.file("example_files/15P0986-15P0986-2-GPE3.kmz",package="RchivalTag")
# k2 <- get_geopos(kmz_file2)
# k0 <- k3 <- rbind(k1,k2)
#
# library(leaflet)
# map <- leaflet_geopos(k0, ID_label="DeployID", collapsedLayers = F)
# map
# map # plot again to show rendering issues (in the layer menu title)
## this is required to avoid rendering issues when plotting the same map twice via RMarkdown
# map <- update_leaflet_elementId(map)
#
# plot again with updated elementID:
# map %>% addMiniMap()
[Package RchivalTag version 0.1.9 Index]