In ThinkGeo UI for Desktop (WinForms) version 10, the following code worked correctly, but in version 13 it no longer functions as expected.
Is there a way to fix this?
- ZoomLevelSnappingMode.None does not work in version 13
(Version 10)
winformsMap1.MinimumScale = 1f;
winformsMap1.ZoomLevelSnapping = ZoomLevelSnappingMode.None;
winformsMap1.MapUnit = GeographyUnit.Meter;
(Version 13)
mapView.MinimumScale = 1f;
mapView.ZoomLevelSnappingMode = ZoomLevelSnappingMode.None; // Has no effect
mapView.MapUnit = GeographyUnit.Meter;
- In version 13, the FontFamilyName in CreateSimpleTextStyle is not applied
(Version 10)
vLayer.ZoomLevelSet.ZoomLevel01.DefaultTextStyle = TextStyles.CreateSimpleTextStyle(“emd”, “Verdana”, 14, DrawingFontStyles.Bold, GeoColor.SimpleColors.Black);
(Version 13)
vLayer.ZoomLevelSet.ZoomLevel01.DefaultTextStyle = TextStyle.CreateSimpleTextStyle(“emd”, “Verdana”, 14, DrawingFontStyles.Black, GeoColors.Black);