我使用此代码从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#调用此方法来生成和保存图像?我无法找到获取图像对象的方法。
答案 0 :(得分:11)
using (WebClient wc = new WebClient()) {
wc.DownloadFile(url, @"c:\temp\img.png");
}