We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
library(leaflet) library(leafgl) library(sf) n = 1e6 df1 = data.frame(id = 1:n, x = rnorm(n, 10, 3), y = rnorm(n, 49, 1.8)) pts = st_as_sf(df1, coords = c("x", "y"), crs = 4326) options(viewer = NULL) # view in browser leaflet() %>% addProviderTiles(provider = providers$CartoDB.DarkMatter) %>% addGlPoints(data = pts, group = "pts") %>% setView(lng = 10.5, lat = 49.5, zoom = 6)
About 7 seconds before browser window is opened.
tmap_devel_mode() tm_shape(pts) + tm_dots()
About 30 seconds....
The text was updated successfully, but these errors were encountered:
small improvements #956
548081c
No branches or pull requests
About 7 seconds before browser window is opened.
About 30 seconds....
The text was updated successfully, but these errors were encountered: