Click here to Skip to main content
15,891,926 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I wanted to save the google map into an image from a webpage.
while i was searching for that i got this program.
http://www.codres.de/downloads/gms.exe[^]

besides other alternatives like print screen i wanted to use a program or map api which can save a specified dimension of google map instead of the screen.

i have used browser component in c# for http access and for displaying certain webpages.

I want to know whether there are options to capture the browser screen to image using any c# functionality or even the browser component would have given such options. just a guess.

i would like to have answers, suggestions on how to capture the map with custom dimension and zoom size to an image.
Posted

Those maps consist of "tiles", typically 256x256 pixels. At zoom level 0, there is one single tile showing the whole world. With each zoom level, the number of tiles per dimension doubles.
Take a look at "GMap.NET - Great Maps for Windows Forms and Presentation[^]", it can download and store tiles from many sources.
 
Share this answer
 
webbrowser component have not capture
but you can access the member of current document by webbrowser.Document
and you can download image in current document by webClient.DownloadFile
__________________________
for test open map maps.google.com and then see this

http://mt1.google.com/vt/lyrs=m@174000000&hl=en&src=app&x=3&y=6&z=4&s=Galileo[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900