Quantcast
Channel: Loading Image from "google maps static map" URL
Viewing all articles
Browse latest Browse all 8

Loading Image from "google maps static map" URL

$
0
0
I was able to find the solution, I hope its helpful for other developers.

Code Snippet

//Download Image

Uri uri = new Uri("http://maps.google.com/staticmap?center=45.728220,4.830321&zoom=8&size=200x200&maptype=roadmap&key=ABQIAAAAaHAby4XeLCIadFkAUW4vmRSkJGe9mG57rOapogjk9M-sm4TzXxR2I7bi2Qkj-opZe16CdmDs7_dNrQ");      

HttpWebRequest httpRequest = (HttpWebRequest)HttpWebRequest.Create(uri);

HttpWebResponse httpResponse = (HttpWebResponse)httpRequest.GetResponse();
Stream imageStream = httpResponse.GetResponseStream();
Bitmap buddyIcon = new Bitmap(imageStream);
httpResponse.Close();
imageStream.Close();

//Load Image
pictureBox1.Image = buddyIcon;



Source: http://csharponphone.blogspot.com/2007/10/image-download-in-net-cf.html

Viewing all articles
Browse latest Browse all 8

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>