I want to make a class in C# that provided for ServiceFacade to calling it.
Now I can get image from the other service. For Example. and Example2
In that link you can see url of the map image.
Then I have to get many of the map images (get many layer of map)
The first image.

The second image.

Question
How to overlap the many of images to one image, then when have that one image how to save it to the local disk.
The Result

Thanks in advance.
In order to overlap them (not really sure what you mean by this), but you would first create a bitmap the size that you need inorder to hold all of the images in the layout that you want.
then you would need to get the graphics device from that bitmap. You will be using this object to draw all of the other images onto the final image at the desired locations in the desired laying.
Then when you are done, you would just call the Save function of the image to a string file location.