I succeed to extract in our plug-in the ID and Name of the map, which is configured in Alarm Definition.How can I receive the map Image through MIP SDK?

Hi Vadim,

Duplicate post, please check this out:

https://developer.milestonesys.com/s/question/0D53X0000950ulPSAQ/how-do-get-list-of-map-guids

Edit: Sorry, that is to get the GUID, not sure if you can retreive the Image.

I found the solution:

I can display map as part of Layout:

Dictionary<String, String> properties = new Dictionary<string, string>();

properties.Add(“mapguid”, “267ed50e-fb24-4f3d-8361-4c78f0f70644”);

ViewAndLayoutItem.InsertBuiltinViewItem(0, ViewAndLayoutItem.MapBuiltinId, properties);

Here the “mapguid” is the GUID extracted by mail you mentioned or taken from Alarm Definition.

Unfortunately this solution isn’t applicable to display Map in some User Control.