How to print a map?
Posted: Tue Nov 08, 2022 12:54 pm
Hi there,
a customer asked me how to print a map without displaying it in his user frontend.
At least for xServer.NET I found a method to create a print.
But can I get a proper description from a more generic perspective? In the past I was able to create "Image from Stream" based on MemoryStreams and all business data such as icons, lines and areas have already been part of the "mapping request".
Nowadays everyone uses rest services to create interactive mapping frontends:
Bernd
a customer asked me how to print a map without displaying it in his user frontend.
At least for xServer.NET I found a method to create a print.
Code: Select all
private void btnPrintToursResponse_Map_Click(object sender, EventArgs e)
{
map.PrintMap(true, "My first Map");
}
Nowadays everyone uses rest services to create interactive mapping frontends:
- more than just a single image is requested
- all business data is rendered on top through the mapping framework
Bernd