BruTile入门

时间:2011-11-15 10:17:13

标签: gis tiles tms sharpmap

有关于如何开始使用BruTile的文档吗?

我目前正在使用SharpMap,我需要预先缓存切片以加快进程

2 个答案:

答案 0 :(得分:4)

我今天正在研究这个:) Mapsui项目site严重依赖于SharpMap和BruTile。项目网站包含优秀的样本,以帮助您入门。我还建议您查看architecture描述,在深入研究样本之前,了解您要处理的内容可能会有所帮助。

答案 1 :(得分:0)

在WPF应用程序中使用带有Mapsui的BruTile很简单:

using BruTile.Predefined;
using Mapsui.Desktop;
using Mapsui.Layers;


//myMapControl is Mapsui.UI.Wpf.MapControl
this.myMapControl.RenderMode = Mapsui.UI.Wpf.RenderMode.Wpf;
this.myMapControl.Map = new Mapsui.Map();
this.myMapControl.Map.Layers.Add(new TileLayer(KnownTileSources.Create())); 

enter image description here