1

我正在使用C#中的Sharpmap在查看器地图中工作。我也使用 FWTools。

我需要在查看器中附加一个 dxf 文件作为参考。

实际上我可以附加形状(shp)文件,光栅图像(ecw,tif),但我可以用sharpmap做到这一点,我找不到路。

有人可以帮助我。谢谢

4

1 回答 1

0

查看 SharpMap 的文档,看起来您可以添加简单的几何图形,例如线条,如果您不介意无耻的插件,我编写了一个可以读取 DXF 文件(源代码)(NuGet 包)的库,因此您应该能够执行以下操作:

DxfFile dxf;
using (var stream = new FileStream(@"path\to\file.dxf", FileMode.Open))
{
    dxf = DxfFile.Load(stream);
}

foreach (var entity in dxf.Entities)
{
    switch (entity.EntityType)
    {
        case DxfEntityType.Line:
            var line = (DxfLine)entity;
            // insert code here to add the line to SharpMap using
            // line.P1 and line.P2 as end points
            break;
    }
}
于 2015-05-11T20:10:43.423 回答