从 Google 街景下载单张图像

从 Google 街景下载单张图像

我刚刚发现我们可以通过以下链接看到Google街景图像: https://maps.googleapis.com/maps/api/streetview?size=640x640&location=38.3810257,-89.486167&heading=0 (其中标题是旋转)。
我的问题是这样的。如何从我的终端下载该图像?

我尝试过:

wget https://maps.googleapis.com/maps/api/streetview?size=640x640&location=38.3810257,-89.486167&heading=0

但它创建了一个名为“wget-log”的文件,其内容显示“错误 400:错误请求”。
谢谢

答案1

问题是我需要引用 url 因为 &:

wget "https://maps.googleapis.com/maps/api/streetview?size=640x640&location=38.3810257,-89.486167&heading=0" -O downloaded.jpg

相关内容