private void RequireButton_OnClick(object sender, RoutedEventArgs e)
{
//AddPOINT
var sf = new MapWinGIS.Shapefile();
// MWShapeId字段将添加到属性表中
bool result = sf.CreateNewWithShapeID("", MapWinGIS.ShpfileType.SHP_POINT);
double xMin = 0.0;
double yMin = 0.0;
double xMax = 1000.0;
double yMax = 1000.0;
//点的位置将是随机的
Random rnd = new Random(DateTime.Now.Millisecond);
//创建点并将它们插入到形状中
for (int i = 0; i < 1000; i++)
{
var pnt = new MapWinGIS.Point();
pnt.x = xMin + (xMax - xMin) * rnd.NextDouble();
pnt.y = yMin + (yMax - yMin) * rnd.NextDouble();
MapWinGIS.Shape shp = new MapWinGIS.Shape();
shp.Create(MapWinGIS.ShpfileType.SHP_POINT);
int index = 0;
MapWinGIS基于C#语言开发 添加随机点
最新推荐文章于 2024-08-21 09:27:24 发布
本文档详细介绍了如何利用C#编程语言结合MapWinGIS库,为地图添加随机点的方法。首先,我们需要导入MapWinGIS库,然后创建GIS窗口,并通过生成随机坐标来确定点的位置。接着,利用MapWinGIS API将这些随机点绘制到地图上。这个过程涉及到GIS坐标转换和地图投影等概念,是GIS开发中的基础操作。
摘要由CSDN通过智能技术生成