在记录集中增加了一条线的记录,并刷新地图。但是地图中没有线显示出来。图层已经设置为可编辑,可见,源代码如下:
Point2Ds points=new Point2Ds();
Point2D leftPoint=new Point(0,0);
Point2D rightPoint=new Point(1000,1000);
points.add(leftPoint);
points.add(rightPoint);
GeoLine line=new GeoLine(points);
recordset.AddNew(line);
recordset.update();
mapControlMain.Map.Refresh();