如何使用shinytmap

问题描述 投票:0回答:1

我在使用 tmap 加载闪亮地图时遇到问题。当我运行闪亮的代码时,会显示输入部分,但不会显示输出。代码不会崩溃,但也永远不会完成运行。我的目标是能够使用

tmap
leaflet
制作一个交互式地图,它已经能够运行在闪亮之外了。

library(tmap) # and maybe also: library(tmaptools)
library(shiny)

ui <- fluidPage(
  titlePanel("Europe"),

  mainPanel(
    plotOutput(outputId = "europe")))

server <- function(input, output) {

  output$europe <- renderPlot({
    qtm(Europe)})}

shinyApp(ui, server)
r shiny r-leaflet tmap
1个回答
2
投票

一切都适合我:

library(shiny)
library(tmap)
data("Europe")

ui <- fluidPage(
  titlePanel("Europe"),
  mainPanel(
    plotOutput(outputId = "europe")))

server <- function(input, output) {

  output$europe <- renderPlot({
    qtm(Europe)
  })
}

shinyApp(ui, server)

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.