This sample shows you how to add a custome Wms layer plugin to Wms server. To run this sample correctly, you sholud:
- Build the CustomWmsLayerPlugin/CustomWmsLayerPlugin.csproj at first, the ouput directory of this project had been redirected to CustomWmsServer/Plugins.
- Change the key-value pair of "Countries02" to absolute path of "Countires02.shp" in CustomWmsServer/Web.config, you can find the shape file under CustomWmsServer/AppData
- Build & run the CustomWmsServer/CustomWmsServer.csproj.
Please refer to Wiki for the detail of ThinkGeo WebForms.
This sample makes use of the following NuGet Packages
protected override MapConfiguration GetMapConfigurationCore(string style, string crs)
{
MapConfiguration mapConfiguration = new MapConfiguration();
string shapeFile = ConfigurationManager.AppSettings["Countries02"];
ShapeFileFeatureLayer shapeFileFeatureLayer = new ShapeFileFeatureLayer(shapeFile);
switch (crs)
{
case "EPSG:900913":
case "EPSG:3857":
shapeFileFeatureLayer.FeatureSource.Projection = new Proj4Projection(4326, 3857);
break;
case "EPSG:4326":
case "CRS:84":
break;
default:
throw new ArgumentException("The input CRS is not supported. Currently only EPSG:4326 and EPSG:900913 and CRS:84 are supported.");
}
switch (style)
{
case "Country1":
shapeFileFeatureLayer.ZoomLevelSet.ZoomLevel01.DefaultAreaStyle = new AreaStyle(
new GeoPen(new GeoSolidBrush(GeoColor.FromHtml("#0066ff")), 1f),
new GeoSolidBrush(GeoColor.FromHtml("#00ccff")));
break;
case "Country2":
shapeFileFeatureLayer.ZoomLevelSet.ZoomLevel01.DefaultAreaStyle = new AreaStyle(
new GeoPen(new GeoSolidBrush(GeoColor.FromHtml("#669900")), 1f),
new GeoSolidBrush(GeoColor.FromHtml("#66ffcc")));
break;
}
shapeFileFeatureLayer.ZoomLevelSet.ZoomLevel01.ApplyUntilZoomLevel = ApplyUntilZoomLevel.Level20;
mapConfiguration.Layers.Add(shapeFileFeatureLayer);
return mapConfiguration;
}
- ThinkGeo Web for WebForms Wiki Resources
- ThinkGeo Web for WebForms Product Description
- ThinkGeo Community Site
- ThinkGeo Web Site
This example makes use of the following APIs:
Map Suite is a set of powerful development components and services for the .Net Framework.
ThinkGeo is a GIS (Geographic Information Systems) company founded in 2004 and located in Frisco, TX. Our clients are in more than 40 industries including agriculture, energy, transportation, government, engineering, software development, and defense.