st_dissolve <- function(df, group_var) {
group_var <- enquo(group_var)
df |>
group_by(!! group_var) |>
summarise(STATUS = 'dissolved')
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.