ImageTileSource.GetImageSource(Int64, Int64, Int32, Size) Method
Returns an image by the specified indices at a given map control zoom level.
Namespace: DevExpress.Xpf.Map
Assembly: DevExpress.Xpf.Map.v24.1.dll
NuGet Package: DevExpress.Wpf.Map
Declaration
Parameters
Name | Type | Description |
---|---|---|
x | Int64 | The tile x-index. |
y | Int64 | The tile y-index. |
level | Int32 | The map control’s zoom level. |
size | Size | The tile size. |
Returns
Type | Description |
---|---|
ImageSource | A ImageSource descendant object that represents a map tile. |
Example
This example shows how to use an ImageTileDataProvider instance to generate map tiles.
- Create an ImageTileDataProvider object and assign it to the ImageLayer.DataProvider property.
- Create a class that inherits the ImageTileSource class.
- Implement the interface’s
ImageTileSource.GetImageSource
method that returns a bitmap for each tile based on its indices and the map control’s zoom level. - Assign an instance of the class you developed to the ImageTileDataProvider.TileSource property.
Markup
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:DXMapInMemoryTileProvider"
xmlns:dxm="http://schemas.devexpress.com/winfx/2008/xaml/map"
x:Class="DXMapInMemoryTileProvider.MainWindow"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<dxm:MapControl>
<dxm:ImageLayer x:Name="imageLayer"/>
</dxm:MapControl>
</Grid>
</Window>
Code-Behind
using DevExpress.Xpf.Map;
using System;
using System.Globalization;
using System.Windows;
using System.Windows.Media;
using System.Windows.Media.Imaging;
namespace DXMapInMemoryTileProvider {
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window {
public MainWindow() {
InitializeComponent();
ImageTileDataProvider tileDataProvider = new ImageTileDataProvider();
tileDataProvider.TileSource = new SimpleTileGenerator();
this.imageLayer.DataProvider = tileDataProvider;
}
}
public class SimpleTileGenerator : ImageTileSource {
Random rnd = new Random();
public override string Name => nameof(SimpleTileGenerator);
public override ImageSource GetImageSource(long x, long y, int level, Size size) {
DrawingVisual drawingVisual = new DrawingVisual();
using (DrawingContext drawingContext = drawingVisual.RenderOpen()) {
FormattedText text = new FormattedText($"{x}:{y}:{level}", new CultureInfo("en-us"),
FlowDirection.LeftToRight, new Typeface("Arial"), 14, Brushes.Black);
drawingContext.DrawRectangle(new SolidColorBrush(Color.FromArgb(128, (byte)rnd.Next(255),
(byte)rnd.Next(255), (byte)rnd.Next(255))), null,
new Rect(new Point(), size));
drawingContext.DrawText(text, new Point(5, 5));
drawingContext.Close();
}
RenderTargetBitmap bmp = new RenderTargetBitmap((int)size.Width, (int)size.Height, 96, 96, PixelFormats.Pbgra32);
bmp.Render(drawingVisual);
return bmp;
}
protected override MapDependencyObject CreateObject() {
return new SimpleTileGenerator();
}
}
}
See Also