R version 3.6.2 (2019-12-12) -- "Dark and Stormy Night" Platform: x86_64-apple-darwin15.6.0 (64-bit)
Code as per example below (replace "your_key" with the proper Google API key). My question: is there a way to customize the size of the search_box, namely its length?
Thanks in advance.
library(shiny)
library(googleway)
ui <- fluidPage(
google_mapOutput('myMap')
)
server <- function(input, output){
output$myMap <- renderGoogle_map({
google_map(key = "your_key", search_box = TRUE)
})
}
shinyApp(ui, server)