我想要在Internet Explorer和Google Chrome中使用Shiny時使用Shiny獲得plotGoogleMaps,並且想知道我需要做些什麼來修復它。閃亮的plotGoogleMaps Internet Explorer與Chrome
我使用的代碼使用的答案,不同的question
代碼工作在Chrome瀏覽器中,但是當IE是瀏覽器不能正常工作。
要重複的代碼在這裏再次是:
library(plotGoogleMaps)
library(shiny)
runApp(list(
ui = pageWithSidebar(
headerPanel('Map'),
sidebarPanel(""),
mainPanel(uiOutput('mymap'))
),
server = function(input, output){
output$mymap <- renderUI({
data(meuse)
coordinates(meuse) = ~x+y
proj4string(meuse) <- CRS("+init=epsg:28992")
m <- plotGoogleMaps(meuse, filename = 'myMap1.html', openMap = F)
tags$iframe(
srcdoc = paste(readLines('myMap1.html'), collapse = '\n'),
width = "100%",
height = "600px"
)
})
}
))
鑑於所創建的文件,我想這可能是一個加載的問題。
一如往常的任何幫助,將不勝感激
是否使用的是IE瀏覽器的版本? – 2014-11-25 17:19:05
我正在使用Internet Explorer 10 – 2014-11-25 17:28:46
@ h.l.m您是否檢查了我的最新解決方案? – 2014-12-04 21:11:02