Hi everyone,I'm inserting images in a GraphicLayer in a map. My goal is moving, resizing and turning the already inserted images if a checkbox is checked and an image is clicked.Can anybody help me, please?private void ImageslayerMouseLeftButtonUp(object sender, GraphicMouseButtonEventArgs e)
{
try
{
var layer = Map.Layers[LayerIdentifiers.ImagesGraphicsLayer] as GraphicsLayer;
if ((e.Graphic == null) || (layer == null))
return;
if (_resizeImage)
{
// Here I need to show the Edit Vertices / Move Box on the clicked image. (e.Graphic)
}
}
catch (Exception ex)
{
UnhandledExceptionHandler.ShowFriendlyMessage(ex);
}
}
Thanks in advance and forgive my poor English.