Back to Devexpress

CacheOptions.DiskLimit Property

windowsforms-devexpress-dot-xtramap-dot-cacheoptions-15ba674d.md

latest5.3 KB
Original Source

CacheOptions.DiskLimit Property

Specifies the disk space (in megabytes) to store tile images obtained from a map data provider.

Namespace : DevExpress.XtraMap

Assembly : DevExpress.XtraMap.v25.2.dll

NuGet Package : DevExpress.Win.Map

Declaration

csharp
[DefaultValue(-1)]
public int DiskLimit { get; set; }
vb
<DefaultValue(-1)>
Public Property DiskLimit As Integer

Property Value

TypeDefaultDescription
Int32-1

An integer value that is the disk limit that is used to store tile images, in megabytes.

|

Property Paths

You can access this nested property as listed below:

Object TypePath to DiskLimit
MapTileDataProviderBase

.CacheOptions .DiskLimit

|

Remarks

When the cache is full, the map control removes the oldest tile file from the cache to make space for a new tile.

Example

This example illustrates what is required to customize the local cache of a map control.

The local cache allows you to save internet resources and significantly increase map performance by loading saved map tiles from the local directory.

To enable map cache, specify the directory to which the loaded map tiles will be saved using the CacheOptions.DiskFolder property and the time interval after which the loaded map tiles should be updated using the CacheOptions.DiskExpireTime property. To access the CacheOptions object, use the MapTileDataProviderBase.CacheOptions property.

In addition, you can specify the amount of memory on the computer and disk space (in megabytes) for storing tile images via CacheOptions.MemoryLimit and CacheOptions.DiskLimit properties, respectively.

In this example tile images of a map are loaded from the OpenStreetMap resource.

csharp
using System;
using System.Windows.Forms;
using DevExpress.XtraMap;

namespace CacheImageTiles {
    public partial class Form1 : Form {
        public Form1() {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e) {
            // Create a map control.
            MapControl map = new MapControl();

            // Specify the map position on the form.           
            map.Dock = DockStyle.Fill;

            // Add the map control to the window.
            this.Controls.Add(map);

            // Create an image tiles layer and add it to the map.
            ImageLayer tilesLayer = new ImageLayer();
            map.Layers.Add(tilesLayer);

            // Create an Open Street data provider.
            OpenStreetMapDataProvider provider = new OpenStreetMapDataProvider();
            tilesLayer.DataProvider = provider;

            // Customize a local cache for storing image tiles obtained from the Open Street provider.
            provider.CacheOptions.DiskFolder = "C://MapTiles"; 
            provider.CacheOptions.DiskExpireTime = new TimeSpan(01,00,00);
            provider.CacheOptions.MemoryLimit = 64;           
            provider.CacheOptions.DiskLimit = 200;
        }
    }
}
vb
Imports System
Imports System.Windows.Forms
Imports DevExpress.XtraMap

Namespace CacheImageTiles
    Partial Public Class Form1
        Inherits Form

        Public Sub New()
            InitializeComponent()
        End Sub

        Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs) Handles MyBase.Load
            ' Create a map control.
            Dim map As New MapControl()

            ' Specify the map position on the form.           
            map.Dock = DockStyle.Fill

            ' Add the map control to the window.
            Me.Controls.Add(map)

            ' Create an image tiles layer and add it to the map.
            Dim tilesLayer As New ImageLayer()
            map.Layers.Add(tilesLayer)

            ' Create an Open Street data provider.
            Dim provider As New OpenStreetMapDataProvider()
            tilesLayer.DataProvider = provider

            ' Customize a local cache for storing image tiles obtained from the Open Street provider.
            provider.CacheOptions.DiskFolder = "C://MapTiles"
            provider.CacheOptions.DiskExpireTime = New TimeSpan(01,00,00)
            provider.CacheOptions.MemoryLimit = 64
            provider.CacheOptions.DiskLimit = 200
        End Sub
    End Class
End Namespace

See Also

CacheOptions Class

CacheOptions Members

DevExpress.XtraMap Namespace