如何从Google静态地图API获取图片

时间:2012-07-21 18:12:15

标签: c# asp.net-mvc google-maps google-maps-api-3

我使用此代码从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#调用此方法来生成和保存图像?我无法找到获取图像对象的方法。

1 个答案:

答案 0 :(得分:11)

using (WebClient wc = new WebClient()) {
  wc.DownloadFile(url, @"c:\temp\img.png");
}