Skip to content

Instantly share code, notes, and snippets.

@cpsievert
Last active December 18, 2018 13:14
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save cpsievert/eca3ff3eba67ab6b4719c748dafd5c4a to your computer and use it in GitHub Desktop.
# devtools::install_github("ropensci/plotly")
library(plotly)
nc <- sf::st_read(system.file("shape/nc.shp", package = "sf"))
# shared data will make the polygons "query-able"
ncsd <- crosstalk::SharedData$new(nc)
p <- ggplot(ncsd) +
geom_sf(aes(fill = AREA, text = paste0(NAME, "\n", "FIPS: ", FIPS))) +
ggthemes::theme_map()
# use highlight function to draw polygon outline on hover
ggplotly(p, tooltip = "text") %>%
highlight(
"plotly_hover",
opacityDim = 1,
selected = attrs_selected(line = list(color = "black"))
)
@cpsievert
Copy link
Author

sf

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment