Hello again,
I want to have Hover over popups at a specific location but I do not want the marker Icon. I tried using markers and a simplemarkerlayer (see my previous post) which works for giving me popup images but the Marker icon overlays my symbology from my custom feature layer.
I followed the advice fron Khalil and used Popups directly on the Map. I created a Pointshape, made a popup, added it to the map but unlike a Marker, the Popup does not popup on Hover. For a maker popup, I set the Popup to IsVisible = false which caused it to only display when I hovered the mouse over the marker. However, when I create a CustomPopup and add it to the Map directly, I can not achieve the same results.
//Add the popups
PointShape F1pos = new PointShape(-118.19, 34.64);
CustomPopup F1pop = new CustomPopup("F1pop", F1pos, "<img src='Pipelines.jpg' />", 300, 200, false, false, 2);
//F1pop.IsVisible = false;
Map1.Popups.Add(F1pop);
What I want to do..... I want to have a custom feature layer with symbols at specific longitudes and latitudes. I use the properties of the feature layer to control symbology for alarms.
I also what a "Hover Over" popup to be active at the same longitude and latitude as the symbols in the feature layer. So far I am not seeing anyway to do this. Is this possible?
Thank you, Leon