I have added an Image to an KmlGroundOverlay.
Most parts of this Image are tranparent.
Is there an way to select this Image with the Mouse, like I can do it with graphics on a GraphicsOverlay?
var polygon = new Polygon(new List<MapPoint> { p1,p2,p3,p4 });
var overlay = new KmlGroundOverlay(polygon, new KmlIcon(new Uri(tempPath)));
var dataset = new KmlDataset(overlay);
var layer = new KmlLayer(dataset) {Id = graphicDefinitionId.ToString()};
Map.OperationalLayers.Add(layer);