Skip to content

Commit

Permalink
fixed #767
Browse files Browse the repository at this point in the history
  • Loading branch information
mtennekes committed Sep 8, 2023
1 parent 0ea2e79 commit fe921e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
version 3.3-4
- (!) last version of tmap 3.x. Next CRAN version will be tmap 4.x (release planned at the end of 2023)
- fixed bug (some stars appeared upside down in plot mode)
- fixed newly introduced shiny bug (#767)

version 3.3-3
- added device to tmap_save
Expand Down
2 changes: 1 addition & 1 deletion R/shiny.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ renderTmap <- function(expr, env = parent.frame(), quoted = FALSE) {
#' @rdname renderTmap
#' @export
tmapOutput <- function(outputId, width = "100%", height = 400) {
htmlwidgets::shinyWidgetOutput(outputId, "leaflet", width, height, "leaflet")
leafletOutput(outputId, width = width, height = height)
}

#' @name tmapProxy
Expand Down

0 comments on commit fe921e9

Please sign in to comment.