make a shiny app that uses autocomplete geocoding to have a dropdown that autocompletes the user input. it should work for all cities and states in the USA.
Drop files here
or click to upload
library(shiny)
library(dplyr)
source("data.R")
source("ui.R")
source("server.R")
shinyApp(ui = ui, server = server)
Hi! I can help you with any questions about Shiny and R. What would you like to know?