Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 ac# 程序员。我需要处理形状文件,所以我使用点空间插件。有一个类 FeatureSet,我通过它提供点、线、多边形的 FeatureType,但没有添加图像层的图像类型。所以请帮我如何添加图像层
您是否使用此代码:
map.AddLayer("pathToImageFile");
或者:
IImageData i = ImageData.Open("pathToImageFile"); IMapImageLayer ly = map1.Layers.Add(i);
另请参阅使用 DotSpatial 加载 shapefile 和图像