Hello
we are using te following code to draw and label LandUseA in our project but there is a difference in encoding in which the city of AlJubail display's its LandUseA with arabic encoding Jeddah for example displays the encoding of its LandeUseA in unrecoginzed caracheters could you tell us the reason for this problem I sent the dbf files to your support email.
the code is:
ShapeFileFeatureLayer AlJubailUseALayer = new ShapeFileFeatureLayer(@"D:\Call_Center\MapData\AlJubail_POI\LandUseA.shp");
ShapeFileFeatureLayer.BuildIndexFile(@"D:\Call_Center\MapData\AlJubail_POI\LandUseA.shp", BuildIndexMode.DoNotRebuild);
AlJubailUseALayer.Name = "UseALayer";
AlJubailUseALayer.ZoomLevelSet.ZoomLevel07.DefaultAreaStyle = AreaStyles.Forest1;
AlJubailUseALayer.ZoomLevelSet.ZoomLevel07.ApplyUntilZoomLevel = ApplyUntilZoomLevel.Level20;
AlJubailUseALayer.ZoomLevelSet.ZoomLevel15.DefaultTextStyle = TextStyles.CreateSimpleTextStyle("POLYGON_NM", "Arial", 7, DrawingFontStyles.Bold, GeoColor.StandardColors.Black, 3, 3);
AlJubailUseALayer.ZoomLevelSet.ZoomLevel15.ApplyUntilZoomLevel = ApplyUntilZoomLevel.Level20;
The same code is used for Jeddah and all the other cities.
Thanks