I have a map with:
- A bottom static road layer. This shape file layer has road names which I display as labels.
- Other dynamic layers that will display some of the roads in red and others in blue. For whatever reason, my labels do not display in the static layers.
The road names left from the bottom static layer don't show well enough. They're buried by my dynamic layers.
Any pointers to places to look? Is there something special I need to do for labels in a dynamic layer?
I set up the text column the same way I do the static layer, but the labels don't appear:
if (LabelName != "")GeoColor.FromArgb(255, LabelColor); false;if (AddHalo == true)new GeoPen(GeoColor.StandardColors.Yellow, 2);
{
ThisTextStyle.TextSolidBrush.Color =
ThisTextStyle.TextColumnName = LabelName;
ThisTextStyle.SuppressPartialLabels =
{
ThisTextStyle.HaloPen =
}
}
// Text/label setup