${mapping_TiledDynamicIServerLayer_Title}

${mapping_TiledDynamicIServerLayer_Description}

Inheritance: TiledDynamicLayer
        public Different_CRS_Overlay()
        {
            InitializeComponent();

            TiledDynamicIServerLayer iserverChangchun = new TiledDynamicIServerLayer()
            {
                Url = "http://localhost:7080/demo",
                MapName = "Changchun",
                MapServiceAddress = "localhost",
                MapServicePort = 8600,
                CRS = new SuperMap.Web.Core.CoordinateReferenceSystem { Unit = Unit.Degree, WKID = 4326 }
            };
            TiledDynamicIServerLayer iserverWorld = new TiledDynamicIServerLayer()
            {
                Url = "http://localhost:7080/demo",
                MapName = "World",
                MapServiceAddress = "localhost",
                MapServicePort = 8600,
                CRS = new SuperMap.Web.Core.CoordinateReferenceSystem { Unit = Unit.Inch, WKID = 8600 }
            };
            MyMap.Layers.LayersInitialized+=new EventHandler(Layers_LayersInitialized);
            MyMap.Layers.Add(iserverChangchun);
            MyMap.Layers.Add(iserverWorld);
            MyMap.ViewBoundsChanged += new EventHandler<ViewBoundsEventArgs>(MyMap_ViewBoundsChanged);
        }
 public GraduatedSymbolTheme()
 {
     InitializeComponent();
     themeLayer = MyMap.Layers["IServerLayer"] as TiledDynamicIServerLayer;
 }
 public LabelTheme()
 {
     InitializeComponent();
     themeLayer = MyMap.Layers["IServerLayer"] as TiledDynamicIServerLayer;
 }
 public ThemeRangeTest()
 {
     InitializeComponent();
     themeLayer = MyMap.Layers["worldLayer"] as TiledDynamicIServerLayer;
 }
 public DotDensity()
 {
     InitializeComponent();
     themeLayer = MyMap.Layers["IServerLayer"] as TiledDynamicIServerLayer;
 }