Can your application allow displaying some shapefile including major roads? It seems that we are unable to see the outline of the shape, see the image:
Well, i am not getting you here, are you saying the major road which are on the screen are not smooth? yes, they are not smooth but they looks smooth if i used the default textstyle like
zoomLevel.DefaultTextStyle = TextStyles.Interstate3("RD_NAME");
But client want some custome color so i wrote this
zoomLevel.DefaultLineStyle.InnerPen = new GeoPen(GeoColor.FromHtml("#a5d4e3"),4);
zoomLevel.DefaultLineStyle.OuterPen= new GeoPen(GeoColor.StandardColors.Transparent,0);
After that, they are not so smooth..
Yes, i have try to cache the shapes as per your suggestion but was not much successful in Implementation. Can you provide me sample code here which will be much appreciated since i am stuck here.
I have attached my sample code here showing how do i load the shapes in a map.
001_Map.ascx.cs (28.6 KB)