我在使用R中的plotGoogleMaps创建的Internet Explorer版本11中渲染了Google地图时遇到了问题。以下代码来自该软件包随附的教程:
require(plotGoogleMaps)
# Data preparation
# Point data
data(meuse)
coordinates(meuse)<-~x+y
# convert to SPDF
proj4string(meuse) <- CRS('+init=epsg:28992')
# adding Coordinate Referent Sys.
# Create web map of Point data
m<-plotGoogleMaps(meuse,filename='myMap1.htm')
当您在IE 10下打开myMap1.htm文件时,它会正确呈现。当您在IE 11(Windows 8.1)下打开此文件时,图例框从左侧一直延伸到屏幕右侧,有效地覆盖了地图的一部分。
这是一张图片:
这里的任何帮助都将非常感激。
答案 0 :(得分:0)
今天收到Microsoft Connect发来的消息,我提交给他们的问题已经关闭。我尝试了上面的脚本,现在正确渲染html地图。我使用的是IE 11.0.9600.17728。谢谢!