Hi everyone,
I can export the whole map image file now using the code below.
But the problem is that I have added a few marks on radmap information layer.
How to export these marks together with the map image?
I can export the whole map image file now using the code below.
using
(Stream stream = dialog.OpenFile())
{
FrameworkElement element =
this
.m_Radmap.FindChildByType<ItemsPresenter>();
Telerik.Windows.Media.Imaging.ExportExtensions.ExportToImage(
element, stream,
new
PngBitmapEncoder());
}
But the problem is that I have added a few marks on radmap information layer.
How to export these marks together with the map image?