在谷歌地图中,搜索输入框会在用户键入时自动完成地址。有没有办法在 R Shiny 中访问自动完成值以便与映射包一起使用?
这里有一个 javascript 方法。我尝试在下面的代码中在 R Shiny 中使用此方法。SymbolixAU 指出使用google_map( search_box = TRUE )
这是一个简单的解决方案。不幸的是,它在我的代码中不起作用,也是因为我希望搜索框与地图分开。
下面的尝试在页面上按此顺序具有文本输入my_address
、文本输出copy_of_address
和 googleway 地图my_map
。
预期的行为是让用户在文本输入中输入文本my_address
,使用地址自动完成(这可行),地址将被复制到文本输出copy_of_address
中(这仅显示输入的内容,而不是自动完成的版本),最后是地图是以这个地址为中心的。
看到输入框有自动完成地址,但是地址和地图的副本仅使用用户输入文本。
在下面的代码中,替换MyKey
为您的 google api 密钥(有时可以使用空字符串)。
library(shiny)
library(googleway)
key <- "MyKey"
set_key(key = key)
google_keys()
ui <- shiny::basicPage(
div(
textInput(inputId = "my_address", label = "")
,textOutput(outputId = "copy_of_address")
,HTML(paste0("
<script>
function initAutocomplete() {
new google.maps.places.Autocomplete(
(document.getElementById('my_address')),
{types: ['geocode']}
);
}
</script>
<script src='https://maps.googleapis.com/maps/api/js?key=", key,"&libraries=places&callback=initAutocomplete'
async defer></script>
"))
,google_mapOutput(outputId = "my_map")
)
)
server <- function(input, output) {
my_address <- reactive({
input$my_address
})
output$copy_of_address <- renderText({
my_address()
})
output$my_map <- renderGoogle_map({
my_address <- my_address()
validate(
need(my_address, "Address not available")
)
df <- google_geocode(address = my_address)
my_coords <- geocode_coordinates(df)
my_coords <- c(my_coords$lat[1], my_coords$lng[1])
google_map(
location = my_coords,
zoom = 12,
map_type_control = FALSE,
zoom_control = FALSE,
street_view_control = FALSE
)
})
}
shinyApp(ui, server)