문제

Is there any documentation on how to get started with BruTile please?

I am currently working with SharpMap and I need to pre cache tiles to speed up the process

도움이 되었습니까?

해결책

I was looking into this today :) The Mapsui project site heavily relies on SharpMap and BruTile. The project site contains excellent samples to get you started. I also suggest you have a look at the architecture description, it might help to know what are you going to deal with before digging deep into the samples.

다른 팁

It is this simple to use BruTile with mapsui in a WPF application:

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top