Question

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

Was it helpful?

Solution

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.

OTHER TIPS

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top