Hello,
I'm currently working with the Esri ArcGIS Maps SDK for .NET in a .NET MAUI application. I need to export an image of the map, and ideally, this image should not be limited to just the visible area on the screen.
At the moment, I'm using the following code:
await _mapView.ExportImageAsync();
However, this approach only captures the portion of the map that is currently rendered on the screen. As a result, the exported image size varies depending on the device. Smaller devices like phones, the image is smaller, while on desktops, more of the map is visible and captured.
Is there a way to export a map image where I can explicitly define the height and width of the output, regardless of the current viewport size?
Unfortunately, using a REST API to generate a larger image on the server side isn't an option, as the map includes numerous graphics layers that need to be rendered client-side.
Open to any ideas on the situation 🙂