BruTile入门

问题描述 投票:2回答:2

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

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

gis tiles tms sharpmap
2个回答
4
投票

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


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

© www.soinside.com 2019 - 2024. All rights reserved.