1

我在 Internet Explorer 版本 11 中渲染 Google 地图时遇到了问题,该地图由 R 中的 plotGoogleMaps 创建。以下代码来自软件包随附的教程:

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) 下打开此文件时,图例框从屏幕左侧一直延伸到右侧,有效地覆盖了地图的一部分。

这是一张图片:

在此处输入图像描述

这里的任何帮助将不胜感激。

4

1 回答 1

0

今天收到来自 Microsoft Connect 的消息,我向他们提交的问题已关闭。我尝试了上面的脚本,现在 html 地图可以正确呈现。我正在使用 IE 11.0.9600.17728。谢谢!

于 2015-09-29T17:24:47.793 回答