0

与文件一起.pdf使用时,如何在输出中抑制 Google 的消息?用于生成说明问题的文件的 MWE 代码:ggmapknitr .Rnw.Rnw.pdf

\documentclass{article}
\begin{document}
<<>>=
library(ggmap)
qmap("empire state building", zoom=15, messaging=FALSE, source="google") 
@
\end{document}

在结果.pdf中,出现以下(格式不正确)消息:

Map from URL : http://maps.googleapis.com/maps/api/staticmap?center=empire+state+building&zoom=15&size=%20640x640&scale=%202&maptype=terrain&sensor=false
Google Maps API Terms of Service : http://developers.google.com/maps/terms  
Information from URL : http://maps.googleapis.com/maps/api/geocode/json?address=empire+state+building&sensor=false  
Google Maps API Terms of Service : http://developers.google.com/maps/terms  

怎样才能抑制这些消息?我希望messaging=FALSE能做到这一点。

4

1 回答 1

1

您可以使用以下方式抑制代码块的任何消息message = FALSE

<<themap, message = FALSE>>=
library(ggmap)
qmap("empire state building", zoom = 15, messaging = FALSE, source = "google") 
@

抑制这些消息。

查看,它以可能被认为允许使用不同的非标准方式ggmap::qmap评估参数。看来(的参数没有被解析或传递,也没有(get_googlemap的参数)...sourcesverboseRgoogleMaps::GetMapmessaging

于 2013-08-19T03:59:22.670 回答