Networking for R Shiny / R Studio + rMaps with KML
问题 This is a follow-up for the question posted here Using the code developed by jdharrison and the discussion here, here is a minimal ui.R: library(shiny);library(rCharts) shinyUI(fluidPage( mainPanel( tabPanel("Interactive", tags$style('.leaflet {height: 1000px;}'), showOutput('mapPlot', 'leaflet')) )) ) And a minimal server.R: library(shiny);library(rCharts);library(rMaps) shinyServer(function(input, output,session) { output$mapPlot <- renderMap({ map1 = Leaflet$new() map1$setView(c(45.5236,