最新文章 (全部类别)
.NETCore WebApi阻止接口重复调用(请求并发操作)
VS2022消除编译警告
“SymmetricAlgorithm.Create(string)”已过时:“Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead
SHA256Managed/SHA512Managed已过时:Derived cryptographic types are obsolete. Use the Create method on the base type instead
MD5CryptoServiceProvider已过时:Derived cryptographic types are obsolete. Use the Create method on the base type instead
C#使用HttpClient获取IP地址位置和网络信息
判断IP是否是外网IP、内网IP
C#使用HttpClient获取公网IP
WebRequest.Create(string)已过时:WebRequest, HttpWebRequest, ServicePoint, and WebClient are obsolete. Use HttpClient instead
C#根据第三方提供的IP查询服务获取公网外网IP地址
html/dom/js/javascript开发记录
调试ASP.NETCore Web站点 - 清理IISExpress缓存数据(js,css)
EFCore+Oracle根据不同的Schema连接数据库
主程序集成CSFramework.EF 数据库框架(.NET7版本)
CSFramework.EF数据库框架简介(.NET8+EFCore)
迁移ECS服务器:导致ORACLE监听服务启动不了解决方案
SQLite数据库
VS2022编译报错:Visual Studio 容器工具需要 Docker Desktop
.NET 9 预览版+C#13新功能
EFCore禁用实体跟踪
WebApi开发框架V3.0 (.NETCore+EFCore) 增加AppSettings全局参数类
C#获取应用程序所有依赖的程序集
LINQ Expression 多条件复合条件组合(And/Or)
CSFrameworkV6客户案例 - MHR - 宁德时代制造人力资源系统
CS软件授权注册系统V3 - 发布证书
C/S软件授权注册系统V3.0(Winform+WebApi+.NET8+EFCore版本)
CS软件授权注册系统V3 - 购买方式
CS软件授权注册系统V3 - 试用版下载
CS软件授权注册系统-客户登记(制作证书)
C/S软件授权注册系统V3.0 - 管理员工具
CSFrameworkV6旗舰版开发框架 - 集成软件授权认证系统
CSFramework.Authentication 软件证书管理系统 - 制作软件客户授权证书
CSFramework.Authentication 软件证书管理系统 - MAC地址管理
CSFramework.Authentication 软件授权证书管理系统
Login/Logout接口调用dalUser的Login/Logout方法
C# Newtonsoft.Json.Linq.JObject 转对象
CSFramework.Authentication 软件授权认证系统 - 软件测试报告
C/S架构软件开发平台 - 旗舰版V6.0 - 底层框架迭代开发
C/S架构软件开发平台 - 旗舰版V6.1新功能 - 增加软件授权认证模块
C/S架构软件开发平台 - 旗舰版CSFrameworkV6 Bug修改记录
CS软件授权注册系统V3 - 开发手册 - 软件集成与用户注册
CS软件授权注册系统-模拟MES/ERP用户注册软件
CS软件授权注册系统-发布/部署WebApi服务器(IIS+.NET8+ASP.NETCore)
CS软件授权注册系统-VS2022调试WebApi接口
.NETCore Console控制台程序使用ILogger日志
CS软件授权注册系统-WebApi服务器介绍
ASP.NETCore集成Swagger添加Authorize按钮Bearer授权
CS软件授权注册系统-WebApi服务器配置
.NETCore WebApi发布到IIS服务器无法打开swagger
.NET8/ .NETCore /ASP.NETCore 部署WebApi到IIS服务器需要安装的运行环境
.net敏捷开发,创造卓越

C# SharpMap的简单使用


C# SharpMap的简单使用

本文是利用ShapMap实现GIS的简单应用的小例子,以供学习分享使用。关于SharpMap的说明,网上大多是以ShapeFile为例进行简单的说明,就连官网上的例子也不多。本文是自己参考了源代码进行整理的,主要是WinForm的例子。原理方面本文也不过多论述,主要是实例演示,需要的朋友还是以SharpMap源码进行深入研究。

什么是SharpMap ?

SharpMap是一个基于.net 2.0使用C#开发的Map渲染类库,可以渲染各类GIS数据(目前支持ESRI Shape和PostGIS格式),可应用于桌面和Web程序。代码行数近10000行,可以算是一个实现了最基本功能的GIS系统,有利于研究学习使用。

涉及知识点:

  • SharpMap的基本概念:Layer(图层,常用图层:VectorLayer,LabelLayer) , IProvider(数据提供者,常用数据源:Ogr(对应MapInfo),ShapFile,DataTablePoint(对应DataSet))
  • 坐标转换:主要用于经纬度和地图坐标的转换。

SharpMap知识结构图:

C# SharpMap的简单使用

效果图如下:

(一)车辆轨迹图:数据源:Excel数据

C# SharpMap的简单使用

(二)定点数据(数据源:Excel)将河南省十七个城市,全部插上小红旗

C# SharpMap的简单使用

(三)使用MapInfo做背景文件(此处通过程序调整了比例尺)

C# SharpMap的简单使用

(四)使用ShapFile做背景图

C# SharpMap的简单使用

 

核心代码

 using BruTile.Predefined;
 using GeoAPI.CoordinateSystems.Transformations;
 using ProjNet.CoordinateSystems;
 using ProjNet.CoordinateSystems.Transformations;
 using SharpMap;
 using SharpMap.Data.Providers;
 using SharpMap.Layers;
 using SharpMap.Rendering;
 using SharpMap.Rendering.Thematics;
 using SharpMap.Styles;
 using System;
 using System.Collections.Generic;
 using System.Data;
 using System.Data.OleDb;
 using System.Drawing;
 using System.Drawing.Drawing2D;
 using System.Drawing.Text;
 using System.Linq;
 using System.Text;
 using Point = GeoAPI.Geometries.Coordinate;
 namespace DemoSharpMap
 {
     public class SharpMapHelper
     {
 
         private const string XlsConnectionString = "Provider={2};Data Source={0}\\{1};Extended Properties=\"Excel 8.0;HDR=Yes;IMEX=1\"";
 
         public static Map InitializeMap(MapType tt,float angle)
         {
             Map map = null;
             switch (tt)
             {
                 case MapType.RunLine:
                     map = InitializeMapOsmWithXls(angle);
                     break;
                 case MapType.MapInfo:
                     map = InitializeMapinfo(angle);
                     break;
                 case MapType.ShapeFile:
                     map = InitializeMapOrig(angle);
                     break;
                 case MapType.Static:
                     map = InitializeMapOsmWithXls2(angle);
                     break;
                 default:
                     map = InitializeMapOsmWithXls(angle);
                     break;
             }
             return map;
         }
 
         /// <summary>
         /// MapInfo格式的地图文件
         /// </summary>
         /// <param name="angle"></param>
         /// <returns></returns>
         private static Map InitializeMapinfo(float angle)
         {
             //Initialize a new map of size 'imagesize'
             Map map = new Map();
 
             //Set up the countries layer
             VectorLayer layCountries = new VectorLayer("Countries");
             //Set the datasource to a shapefile in the App_data folder
             try
             {
                 layCountries.DataSource = new Ogr("GeoData/MapInfo/countriesMapInfo.tab");
             }
             catch (TypeInitializationException ex)
             {
                 if (ex.Message == "The type initializer for 'OSGeo.OGR.Ogr' threw an exception.")
                 {
                     throw new Exception(
                         String.Format(
                             "The application threw a PINVOKE exception. You probably need to copy the unmanaged dll's to your bin directory. They are a part of fwtools {0}. You can download it from: http://home.gdal.org/fwtools/",
                             GdalRasterLayer.FWToolsVersion));
                 }
                 throw;
             }
 
             //Set fill-style to green
             layCountries.Style.Fill = new SolidBrush(Color.Green);
             //Set the polygons to have a black outline
             layCountries.Style.Outline = Pens.Black;
             layCountries.Style.EnableOutline = true;
             layCountries.SRID = 4326;
 
             //Set up a river layer
             VectorLayer layRivers = new VectorLayer("Rivers");
             //Set the datasource to a shapefile in the App_data folder
             layRivers.DataSource = new Ogr("GeoData/MapInfo/riversMapInfo.tab");
             //Define a blue 1px wide pen
             layRivers.Style.Line = new Pen(Color.Blue, 1);
             layRivers.SRID = 4326;
 
             //Set up a river layer
             VectorLayer layCities = new VectorLayer("Cities");
             //Set the datasource to a shapefile in the App_data folder
             layCities.DataSource = new Ogr("GeoData/MapInfo/citiesMapInfo.tab");
             layCities.Style.SymbolScale = 0.8f;
             layCities.MaxVisible = 40;
             layCities.SRID = 4326;
 
             //Set up a country label layer
             LabelLayer layLabel = new LabelLayer("Country labels");
             layLabel.DataSource = layCountries.DataSource;
             layLabel.Enabled = true;
             layLabel.LabelColumn = "Name";
             layLabel.Style = new LabelStyle();
             layLabel.Style.ForeColor = Color.White;
             layLabel.Style.Font = new Font(FontFamily.GenericSerif, 12);
             layLabel.Style.BackColor = new SolidBrush(Color.FromArgb(128, 255, 0, 0));
             layLabel.MaxVisible = 90;
             layLabel.MinVisible = 30;
             layLabel.Style.HorizontalAlignment = LabelStyle.HorizontalAlignmentEnum.Center;
             layLabel.SRID = 4326;
             layLabel.MultipartGeometryBehaviour = LabelLayer.MultipartGeometryBehaviourEnum.Largest;
 
             //Set up a city label layer
             LabelLayer layCityLabel = new LabelLayer("City labels");
             layCityLabel.DataSource = layCities.DataSource;
             layCityLabel.Enabled = true;
             layCityLabel.LabelColumn = "Name";
             layCityLabel.Style = new LabelStyle();
             layCityLabel.Style.ForeColor = Color.Black;
             layCityLabel.Style.Font = new Font(FontFamily.GenericSerif, 11);
             layCityLabel.MaxVisible = layLabel.MinVisible;
             layCityLabel.Style.HorizontalAlignment = LabelStyle.HorizontalAlignmentEnum.Left;
             layCityLabel.Style.VerticalAlignment = LabelStyle.VerticalAlignmentEnum.Bottom;
             layCityLabel.Style.Offset = new PointF(3, 3);
             layCityLabel.Style.Halo = new Pen(Color.Yellow, 2);
             layCityLabel.TextRenderingHint = TextRenderingHint.AntiAlias;
             layCityLabel.SmoothingMode = SmoothingMode.AntiAlias;
             layCityLabel.SRID = 4326;
             layCityLabel.LabelFilter = LabelCollisionDetection.ThoroughCollisionDetection;
             layCityLabel.Style.CollisionDetection = true;
 
             //Add the layers to the map object.
             //The order we add them in are the order they are drawn, so we add the rivers last to put them on top
             map.Layers.Add(layCountries);
             map.Layers.Add(layRivers);
             map.Layers.Add(layCities);
             map.Layers.Add(layLabel);
             map.Layers.Add(layCityLabel);
             //增加Layers
             var xlsPath = string.Format(XlsConnectionString, System.IO.Directory.GetCurrentDirectory(), "GeoData\\Henan.xls", Properties.Settings.Default.OleDbProvider);
             var ds = GetDataFromExcel(xlsPath, "Cities");
             //var ct = GetCoordinateTransformation();
             //TransCoordinate(ds, ct);
             string columeName = "Rotation";
             //Add Rotation Column
             AddColumeToDataSet(ds, columeName, -angle);
 
             var xlsLayer = GetLayerFromDataSet2(ds, Color.GreenYellow);//Set up provider
            
             map.Layers.Add(xlsLayer); //Add layer to map
             map.Center = xlsLayer.Envelope.Centre;// new Point(0, 0);
             map.MapScale = 350;
             //map.Center = new Point(0, 0);
 
             //_ogrSampleDataset = "MapInfo";
 
             //Matrix mat = new Matrix();
             //mat.RotateAt(angle, map.WorldToImage(map.Center));
             //map.MapTransform = mat;
 
             //map.ZoomToBox(xlsLayer.Envelope);
             return map;
         }
 
         /// <summary>
         /// ShapeFile
         /// </summary>
         /// <param name="angle"></param>
         /// <returns></returns>
         private static Map InitializeMapOrig(float angle)
         {
             //Initialize a new map of size 'imagesize'
             Map map = new Map();
 
             //Set up the countries layer
             VectorLayer layCountries = new VectorLayer("Countries");
             //Set the datasource to a shapefile in the App_data folder
             layCountries.DataSource = new ShapeFile("GeoData/World/countries.shp", true);
             //Set fill-style to green
             layCountries.Style.Fill = new SolidBrush(Color.FromArgb(64, Color.Green));
             //Set the polygons to have a black outline
             layCountries.Style.Outline = Pens.Black;
             layCountries.Style.EnableOutline = true;
             layCountries.SRID = 4326;
 
             //Set up a river layer
             VectorLayer layRivers = new VectorLayer("Rivers");
             //Set the datasource to a shapefile in the App_data folder
             layRivers.DataSource = new ShapeFile("GeoData/World/rivers.shp", true);
             //Define a blue 1px wide pen
             layRivers.Style.Line = new Pen(Color.Blue, 1);
             layRivers.SRID = 4326;
 
             //Set up a cities layer
             VectorLayer layCities = new VectorLayer("Cities");
             //Set the datasource to a shapefile in the App_data folder
             layCities.DataSource = new ShapeFile("GeoData/World/cities.shp", true);
             layCities.Style.SymbolScale = 0.8f;
             layCities.MaxVisible = 40;
             layCities.SRID = 4326;
 
             //Set up a country label layer
             LabelLayer layLabel = new LabelLayer("Country labels");
             layLabel.DataSource = layCountries.DataSource;
             layLabel.Enabled = true;
             layLabel.LabelColumn = "Name";
             layLabel.Style = new LabelStyle();
             layLabel.Style.ForeColor = Color.White;
             layLabel.Style.Font = new Font(FontFamily.GenericSerif, 12);
             layLabel.Style.BackColor = new SolidBrush(Color.FromArgb(128, 255, 0, 0));
             layLabel.MaxVisible = 90;
             layLabel.MinVisible = 30;
             layLabel.Style.HorizontalAlignment = LabelStyle.HorizontalAlignmentEnum.Center;
             layLabel.SRID = 4326;
             layLabel.MultipartGeometryBehaviour = LabelLayer.MultipartGeometryBehaviourEnum.Largest;
             layLabel.LabelFilter = LabelCollisionDetection.ThoroughCollisionDetection;
             layLabel.Style.CollisionDetection = true;
             layLabel.LabelPositionDelegate = fdr => fdr.Geometry.InteriorPoint.Coordinate;
             layLabel.PriorityColumn = "POPDENS";
 
             //Set up a city label layer
             LabelLayer layCityLabel = new LabelLayer("City labels");
             layCityLabel.DataSource = layCities.DataSource;
             layCityLabel.Enabled = true;
             layCityLabel.LabelColumn = "Name";
             layCityLabel.Style = new LabelStyle();
             layCityLabel.Style.ForeColor = Color.Black;
             layCityLabel.Style.Font = new Font(FontFamily.GenericSerif, 11);
             layCityLabel.MaxVisible = layLabel.MinVisible;
             layCityLabel.Style.HorizontalAlignment = LabelStyle.HorizontalAlignmentEnum.Left;
             layCityLabel.Style.VerticalAlignment = LabelStyle.VerticalAlignmentEnum.Bottom;
             layCityLabel.Style.Offset = new PointF(3, 3);
             layCityLabel.Style.Halo = new Pen(Color.Yellow, 2);
             layCityLabel.TextRenderingHint = TextRenderingHint.AntiAlias;
             layCityLabel.SmoothingMode = SmoothingMode.AntiAlias;
             layCityLabel.SRID = 4326;
             layCityLabel.LabelFilter = LabelCollisionDetection.ThoroughCollisionDetection;
             layCityLabel.Style.CollisionDetection = true;
             layCityLabel.PriorityColumn = "POPULATION";
             layCityLabel.Theme = new GradientTheme(layCityLabel.PriorityColumn, 250000, 5000000,
                 new LabelStyle
                 {
                     MaxVisible = 10,
                     CollisionBuffer = new Size(0, 0),
                     CollisionDetection = true,
                     Enabled = true,
                     ForeColor = Color.LightSlateGray,
                     Halo = new Pen(Color.Silver, 1),
                     HorizontalAlignment = LabelStyle.HorizontalAlignmentEnum.Center,
                     VerticalAlignment = LabelStyle.VerticalAlignmentEnum.Middle,
                     Font = new Font(GenericFontFamilies.SansSerif.ToString(), 8f, FontStyle.Regular)
                 },
                 new LabelStyle
                 {
                     MaxVisible = layLabel.MinVisible,
                     CollisionBuffer = new Size(3, 3),
                     CollisionDetection = true,
                     Enabled = true,
                     ForeColor = Color.LightSlateGray,
                     Halo = new Pen(Color.Silver, 5),
                     HorizontalAlignment = LabelStyle.HorizontalAlignmentEnum.Center,
                     VerticalAlignment = LabelStyle.VerticalAlignmentEnum.Middle,
                     Font = new Font(GenericFontFamilies.SansSerif.ToString(), 16f, FontStyle.Bold)
                 });
 
             bool ignoreLength = false;
 
             var layRiverLabel = new LabelLayer("River labels")
             {
                 DataSource = layRivers.DataSource,
                 Enabled = true,
                 LabelColumn = "Name",
                 TextRenderingHint = TextRenderingHint.AntiAlias,
                 SmoothingMode = SmoothingMode.AntiAlias,
                 SRID = 4326,
                 LabelFilter = LabelCollisionDetection.ThoroughCollisionDetection,
                 MultipartGeometryBehaviour = LabelLayer.MultipartGeometryBehaviourEnum.CommonCenter,
                 Style =
                                            new LabelStyle
                                            {
                                                ForeColor = Color.DarkBlue,
                                                Font = new Font(FontFamily.GenericSansSerif, 11),
                                                HorizontalAlignment = LabelStyle.HorizontalAlignmentEnum.Center,
                                                VerticalAlignment = LabelStyle.VerticalAlignmentEnum.Middle,
                                                //CollisionDetection = true,
                                                Halo = new Pen(Color.Azure, 2),
                                                IgnoreLength = ignoreLength,
                                                Offset = new PointF(0, -10)
 
                                            },
             };
 
             //Add the layers to the map object.
             //The order we add them in are the order they are drawn, so we add the rivers last to put them on top
             //map.BackgroundLayer.Add(AsyncLayerProxyLayer.Create(layCountries));
             map.Layers.Add(layCountries);
             map.Layers.Add(layRivers);
             map.Layers.Add(layCities);
             map.Layers.Add(layLabel);
             map.Layers.Add(layCityLabel);
             map.Layers.Add(layRiverLabel);
 
             //增加Layers
             var xlsPath = string.Format(XlsConnectionString, System.IO.Directory.GetCurrentDirectory(), "GeoData\\Henan.xls", Properties.Settings.Default.OleDbProvider);
             var ds = GetDataFromExcel(xlsPath, "Cities");
             //var ct = GetCoordinateTransformation();
             //TransCoordinate(ds, ct);
             string columeName = "Rotation";
             //Add Rotation Column
             AddColumeToDataSet(ds, columeName, -angle);
 
             var xlsLayer = GetLayerFromDataSet2(ds, Color.GreenYellow);//Set up provider
 
             map.Layers.Add(xlsLayer); //Add layer to map
                                       //limit the zoom to 360 degrees width
                                       //map.MaximumZoom = 360;
                                       //map.BackColor = Color.LightBlue;
 
             //map.Zoom = 360;
             map.Center = xlsLayer.Envelope.Centre;// new Point(0, 0);
             map.MapScale = 350;
             //Matrix mat = new Matrix();
             //mat.RotateAt(angle, map.WorldToImage(map.Center));
             //map.MapTransform = mat;
             //map.ZoomToBox(xlsLayer.Envelope);
             return map;
         }
 
         /// <summary>
         /// 在线显示,圆点显示轨迹
         /// </summary>
         /// <param name="angle"></param>
         /// <returns></returns>
         private static Map InitializeMapOsmWithXls(float angle)
         {
             var map = new Map();
 
             var tileLayer = new TileAsyncLayer(
                 KnownTileSources.Create(KnownTileSource.OpenStreetMap), "TileLayer - OSM with XLS");
             tileLayer.SRID = 4326;
             map.BackgroundLayer.Add(tileLayer);
 
             //Get data from excel
             var xlsPath = string.Format(XlsConnectionString, System.IO.Directory.GetCurrentDirectory(), "GeoData\\Cities.xls", Properties.Settings.Default.OleDbProvider);
             var ds = GetDataFromExcel(xlsPath, "Cities");
             var ds1 = GetDataFromExcel(xlsPath, "Cities2");
             var ct = GetCoordinateTransformation();
             TransCoordinate(ds, ct);
             TransCoordinate(ds1, ct);
             string columeName = "Rotation";
             //Add Rotation Column
             AddColumeToDataSet(ds, columeName, -angle);
             AddColumeToDataSet(ds1, columeName, -angle);
 
             var xlsLayer = GetLayerFromDataSet(ds, Color.GreenYellow);//Set up provider
             map.Layers.Add(xlsLayer); //Add layer to map
 
             var xlsLayer1 = GetLayerFromDataSet(ds1, Color.Red);
             map.Layers.Add(xlsLayer1);
 
             var xlsLabelLayer = GetLabelLayerByVectorLayer(xlsLayer, "XLSLabel");
 
             xlsLabelLayer.Theme = new SharpMap.Rendering.Thematics.FontSizeTheme(xlsLabelLayer, map) { FontSizeScale = 1000f };
             map.Layers.Add(xlsLabelLayer);
             map.ZoomToBox(xlsLayer.Envelope.ExpandedBy(xlsLayer1.Envelope));
             return map;
         }
 
         /// <summary>
         /// 在线显示,图标显示轨迹
         /// </summary>
         /// <param name="angle"></param>
         /// <returns></returns>
         private static Map InitializeMapOsmWithXls2(float angle)
         {
             var map = new Map();
 
             var tileLayer = new TileAsyncLayer(
                 KnownTileSources.Create(KnownTileSource.OpenStreetMap), "TileLayer - OSM with XLS");
             tileLayer.SRID = 4326;
             map.BackgroundLayer.Add(tileLayer);
 
             //Get data from excel
             var xlsPath = string.Format(XlsConnectionString, System.IO.Directory.GetCurrentDirectory(), "GeoData\\Henan.xls", Properties.Settings.Default.OleDbProvider);
             var ds = GetDataFromExcel(xlsPath, "Cities");
             var ct = GetCoordinateTransformation();
             TransCoordinate(ds, ct);
             string columeName = "Rotation";
             //Add Rotation Column
             AddColumeToDataSet(ds, columeName, -angle);
 
             var xlsLayer = GetLayerFromDataSet2(ds, Color.GreenYellow);//Set up provider
             map.Layers.Add(xlsLayer); //Add layer to map
 
             var xlsLabelLayer = GetLabelLayerByVectorLayer(xlsLayer, "XLSLabel");
 
             xlsLabelLayer.Theme = new FontSizeTheme(xlsLabelLayer, map) { FontSizeScale = 1000f };
             map.Layers.Add(xlsLabelLayer);
             map.ZoomToBox(xlsLayer.Envelope);
             return map;
         }
 
         /// <summary>
         /// 从Excel中读取数据
         /// </summary>
         private static DataSet GetDataFromExcel(string xlsPath, string sheetName)
         {
             DataSet ds = new DataSet("XLS");
             string sql = string.Format("SELECT * FROM [{0}$];", sheetName);
             using (var cn = new OleDbConnection(xlsPath))
             {
                 cn.Open();
                 using (var da = new OleDbDataAdapter(new OleDbCommand(sql, cn)))
                 {
                     da.Fill(ds);
                 }
             }
             return ds;
         }
 
         /// <summary>
         /// 获取坐标转换对象
         /// </summary>
         /// <returns></returns>
         private static ICoordinateTransformation GetCoordinateTransformation()
         {
             //The SRS for this datasource is EPSG:4326, therefore we need to transfrom it to OSM projection
             var ctf = new CoordinateTransformationFactory();
             var cf = new CoordinateSystemFactory();
             var epsg4326 = cf.CreateFromWkt("GEOGCS[\"WGS 84\",DATUM[\"WGS_1984\",SPHEROID[\"WGS 84\",6378137,298.257223563,AUTHORITY[\"EPSG\",\"7030\"]],AUTHORITY[\"EPSG\",\"6326\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.01745329251994328,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4326\"]]");
             var epsg3857 = cf.CreateFromWkt("PROJCS[\"Popular Visualisation CRS / Mercator\", GEOGCS[\"Popular Visualisation CRS\", DATUM[\"Popular Visualisation Datum\", SPHEROID[\"Popular Visualisation Sphere\", 6378137, 0, AUTHORITY[\"EPSG\",\"7059\"]], TOWGS84[0, 0, 0, 0, 0, 0, 0], AUTHORITY[\"EPSG\",\"6055\"]],PRIMEM[\"Greenwich\", 0, AUTHORITY[\"EPSG\", \"8901\"]], UNIT[\"degree\", 0.0174532925199433, AUTHORITY[\"EPSG\", \"9102\"]], AXIS[\"E\", EAST], AXIS[\"N\", NORTH], AUTHORITY[\"EPSG\",\"4055\"]], PROJECTION[\"Mercator\"], PARAMETER[\"False_Easting\", 0], PARAMETER[\"False_Northing\", 0], PARAMETER[\"Central_Meridian\", 0], PARAMETER[\"Latitude_of_origin\", 0], UNIT[\"metre\", 1, AUTHORITY[\"EPSG\", \"9001\"]], AXIS[\"East\", EAST], AXIS[\"North\", NORTH], AUTHORITY[\"EPSG\",\"3857\"]]");
             var ct = ctf.CreateFromCoordinateSystems(epsg4326, epsg3857);
             return ct;
         }
 
         /// <summary>
         /// 转换地球经纬度到坐标
         /// </summary>
         /// <param name="ds"></param>
         /// <param name="ct"></param>
         private static void TransCoordinate(DataSet ds, ICoordinateTransformation ct)
         {
             foreach (System.Data.DataRow row in ds.Tables[0].Rows)
             {
                 if (row["X"] == DBNull.Value || row["Y"] == DBNull.Value) continue;
                 var coords = new[] { Convert.ToDouble(row["X"]), Convert.ToDouble(row["Y"]) };
                 coords = ct.MathTransform.Transform(coords);
                 row["X"] = coords[0];
                 row["Y"] = coords[1];
             }
         }
 
         /// <summary>
         /// 增加列
         /// </summary>
         /// <param name="ds"></param>
         /// <param name="columeName"></param>
         /// <param name="columeValue"></param>
         private static void AddColumeToDataSet(DataSet ds, string columeName, float columeValue)
         {
             ds.Tables[0].Columns.Add(columeName, typeof(float));
             foreach (System.Data.DataRow row in ds.Tables[0].Rows)
             {
                 row["Rotation"] = -columeValue;
             }
         }
 
         /// <summary>
         /// 轨迹用点表示
         /// </summary>
         /// <param name="ds"></param>
         /// <param name="c"></param>
         /// <returns></returns>
         private static VectorLayer GetLayerFromDataSet(DataSet ds, Color c)
         {
             var xlsProvider = new DataTablePoint(ds.Tables[0], "OID", "X", "Y");
             var xlsLayer = new VectorLayer("XLS", xlsProvider)
             { Style = new VectorStyle() { PointColor = new SolidBrush(c) } };
             return xlsLayer;
         }
 
         /// <summary>
         /// 获取带图标的图层
         /// </summary>
         /// <param name="ds"></param>
         /// <param name="c"></param>
         /// <returns></returns>
         private static VectorLayer GetLayerFromDataSet2(DataSet ds, Color c)
         {
             var xlsProvider = new DataTablePoint(ds.Tables[0], "OID", "X", "Y");
             var xlsLayer = new VectorLayer("XLS", xlsProvider)
             { Style = { Symbol=Properties.Resources.redflag} };
             return xlsLayer;
         }
 
         private static LabelLayer GetLabelLayerByVectorLayer(VectorLayer xlsLayer, string layerName)
         {
             var xlsLabelLayer = new LabelLayer(layerName)
             {
                 DataSource = xlsLayer.DataSource,
                 LabelColumn = "NAME",
                 //PriorityColumn = "Population",
                 Style =
                     {
                         CollisionBuffer = new System.Drawing.SizeF(2f, 2f),
                         CollisionDetection = true
                     },
                 LabelFilter = LabelCollisionDetection.ThoroughCollisionDetection
             };
             return xlsLabelLayer;
         }
     }
 
     public enum MapType {
         ShapeFile = 0,
         MapInfo = 1,
         RunLine = 2,//运行轨迹
         Static = 3 //定点数据
 
     }
 }
View Code

 

备注:

  1. 因用的MapInfo和Shape源文件为源码里面的,所有为英文显示。
版权声明:本文为开发框架文库发布内容,转载请附上原文出处连接
C/S框架网
上一篇:C# 利用ZXing.Net来生成条形码和二维码
下一篇:C# 实现FTP客户端
评论列表

发表评论

评论内容
昵称:
关联文章

C# SharpMap简单使用
C#/.NET Core简单认识
C# 一个简单面向对象例子
SOAP 简单对象访问协议
C# 搭建一个简单WebApi项目,c# webapi
C#.Net B/S简单框架结构示例[原创]
【原创】简单快速软件开发平台,C/S架构二次开发平台
新手指南-最快速最简单修改及保存数据方法
C# Lambda表达式=>符号使用
C#Expression表达式使用方法
简单表(单表)维护演示吗(wcf模式)
C#直接使用DllImport外部Dll方法
Winform程序扫码条码读取商品数据简单实现|C/S框架网
开发框架有业务Demo吗?比如从采购订单到采购入库简单业务
C# LINQ使用案例参考
C# Barcode条码控件使用方法
如何培训程序员来使用平台?
C#使用低级别Windows API勾子阻止个别按键
使用bllBaseDataDict类提交业务单据(主从表)明细表实例|C/S框架网
C#使用正则表达式移除所有Html标记,返回纯文本

热门标签
软件著作权登记证书 .NET .NET Reactor .NET5 .NET6 .NET7 .NET8 .NET9 .NETFramework APP AspNetCore AuthV3 Auth-软件授权注册系统 Axios B/S B/S开发框架 B/S框架 BSFramework Bug Bug记录 C#加密解密 C#源码 C/S CHATGPT CMS系统 CodeGenerator CSFramework.DB CSFramework.EF CSFramework.License CSFrameworkV1学习版 CSFrameworkV2标准版 CSFrameworkV3高级版 CSFrameworkV4企业版 CSFrameworkV5旗舰版 CSFrameworkV6.0 CSFrameworkV6.1 CSFrameworkV6旗舰版 DAL数据访问层 Database datalock DbFramework Demo教学 Demo实例 Demo下载 DevExpress教程 Docker Desktop DOM ECS服务器 EFCore EF框架 Element-UI EntityFramework ERP ES6 Excel FastReport GIT HR IDatabase IIS JavaScript LINQ MES MiniFramework MIS MySql NavBarControl NETCore Node.JS NPM OMS Oracle资料 ORM PaaS POS Promise API PSD RedGet Redis RSA SAP Schema SEO SEO文章 SQL SQLConnector SQLite SqlServer Swagger TMS系统 Token令牌 VS2022 VSCode VS升级 VUE WCF WebApi WebApi NETCore WebApi框架 WEB开发框架 Windows服务 Winform 开发框架 Winform 开发平台 WinFramework Workflow工作流 Workflow流程引擎 XtraReport 安装环境 版本区别 报表 备份还原 踩坑日记 操作手册 达梦数据库 代码生成器 迭代开发记录 功能介绍 国际化 基础资料窗体 架构设计 角色权限 开发sce 开发工具 开发技巧 开发教程 开发框架 开发平台 开发指南 客户案例 快速搭站系统 快速开发平台 框架升级 毛衫行业ERP 秘钥 密钥 权限设计 软件报价 软件测试报告 软件加壳 软件简介 软件开发框架 软件开发平台 软件开发文档 软件授权 软件授权注册系统 软件体系架构 软件下载 软件著作权登记证书 软著证书 三层架构 设计模式 生成代码 实用小技巧 视频下载 收钱音箱 数据锁 数据同步 微信小程序 未解决问题 文档下载 喜鹊ERP 喜鹊软件 系统对接 详细设计说明书 新功能 信创 行政区域数据库 需求分析 疑难杂症 蝇量级框架 蝇量框架 用户管理 用户开发手册 用户控件 在线支付 纸箱ERP 智能语音收款机 自定义窗体 自定义组件 自动升级程序
联系我们
联系电话:13923396219(微信同号)
电子邮箱:23404761@qq.com
站长微信二维码
微信二维码