You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tm_dots and tm_symbols revert to their default shapes when plotting 500 or more points.
tmap_mode("view") # doesn't affect plot mode
## make some points
grid <- sf::st_make_grid(what = "centers")
## with <500 points, maps correctly
tm_shape(grid[1:499]) +
tm_symbols(fill = "blue", col = "blue", shape = 4)
## with 500 points or more, the symbols revert to default circles, ignoring the shape parameter
tm_shape(grid[1:500]) +
tm_symbols(fill = "blue", col = "blue", shape = 4)