4

我使用此代码从 Google API 生成静态图像,但我有太多请求,所以有时我会被 Google 过度使用。

string latlng = location.Latitude + "," + location.Longitude;
string path = "http://maps.googleapis.com/maps/api/staticmap?center=" + latlng +
   "&zoom=16&size=200x200&maptype=roadmap&markers=color:blue%7Clabel:S%7C" +
   latlng + "&sensor=false";

是否可以从 C# 调用它来生成和保存图像?我找不到获取图像对象的方法。

4

1 回答 1

13
using (WebClient wc = new WebClient()) {
  wc.DownloadFile(url, @"c:\temp\img.png");
}
于 2012-07-21T18:28:26.997 回答