我将RStudio与安装在Windows 7计算机中的R 3.5.2一起使用。 我正在尝试使用ggmap根据某些参数加载google map,但这失败了,因为未提供身份验证密钥,并且发生了以下403错误
download.file(URL,destfile = tmp,quiet =!messaging,mode =“ wb”)中的错误: 无法打开URL'http://maps.googleapis.com/maps/api/staticmap?> center = 29.763284,-95.363271&zoom = 4&size = 640x640&scale = 2&maptype = hybrid&sensor => false' 另外:警告消息: 在download.file(url,destfile = tmp,quiet =!messaging,mode =“ wb”)中: 无法打开URL'http://maps.googleapis.com/maps/api/staticmap?> center = 29.763284,-95.363271&zoom = 4&size = 640x640&scale = 2&maptype = hybrid&sensor => false':HTTP状态为“ 403禁止访问”
很多文章建议安装ggmap的开发版本,之后您可以通过
使用maps API密钥// save api key
register_google(key = "YOUR_API_KEY")
因此,我尝试使用来安装开发版本,
devtools::install_github("dkahle/ggmap")
但是尝试安装ggmap的开发版本时,错误如下所示
devtools::install_github("dkahle/ggmap")
Error in curl::curl_fetch_memory(url, handle = h) :
schannel: next InitializeSecurityContext failed: SEC_E_UNTRUSTED_ROOT (0x80090325) - The certificate chain was issued by an authority that is not trusted.
任何建议/帮助都很好, 谢谢