I'm using an InMemoryFeatureLayer and adding features based on input from the user. When I set layer.ZoomLevelSet.ZoomLevel01.DefaultPointStyle to one of the following PointStyles, the symbols will appear:
PointStyles.Capital1;
PointStyles.CreateSimplePointStyle(PointSymbolType.Circle, GeoColor.StandardColors.Red, 10);
PointStyles.CreateSimplePointStyle(PointSymbolType.Triangle, GeoColor.StandardColors.Red, 10);
PointStyles.CreateSimpleTriangleStyle(GeoColor.SimpleColors.BrightRed, 10, GeoColor.SimpleColors.BrightRed);
However, I can't get any star or diamond symbols to appear. I've tried variations such as the following examples:
PointStyles.CreateSimplePointStyle(PointSymbolType.Star2, GeoColor.StandardColors.Red, 10);
PointStyles.CreateSimpleStarStyle(GeoColor.StandardColors.Red, 10, GeoColor.StandardColors.Black);
PointStyles.CreateSimpleStarStyle(GeoColor.SimpleColors.BrightRed, 10, GeoColor.SimpleColors.BrightRed);
Is there something else that needs to be done for Star and Diamond symbols to appear?