I have a bunch of MapIcons defined similarly to this:
Geopoint t_pt = new Geopoint(new BasicGeoposition() { Latitude = -50.05, Longitude = 22.12 });
MapIcon t_icon = new MapIcon { Location = t_pt };
t_icon.Title ="My_Title";
MainMap.MapElements.Add(t_icon);
These display on MainMap with no problem. But I would like to add a tooltip to each MapIcon that displays, for example, the Icon title. I have tried this:
ToolTipService.SetToolTip(t_icon, "HI");
As a test but when I mouseover the MapIcon nothing is displayed. Tooltips work find if I mouseover other controls (such as a button or listbox), though.
Any ideas?