windowsforms-devexpress-dot-xtramap-45516eb1.md
A layer that is used to display additional information above the map.
Namespace : DevExpress.XtraMap
Assembly : DevExpress.XtraMap.v25.2.dll
NuGet Package : DevExpress.Win.Map
public class InformationLayer :
MapItemsLayerBase,
IMapClickHandler
Public Class InformationLayer
Inherits MapItemsLayerBase
Implements IMapClickHandler
The information layer allows you to place GIS elements (e.g., a search panel) above a map.
GIS elements can be connected to the data provider by assigning the InformationLayer.DataProvider property to the corresponding data provider type. After that, you can send and display the information requests from this provider on a GIS element.
For more information on information layer, see the Layers topic.
This example demonstrates how to allow users to search for a specific place on a map using the Search panel.
To enable searching in the map control, do the following.
InformationLayer and add it to the map.BingSearchDataProvider and assign it to the InformationLayer.DataProvider property.BingMapDataProvider.BingKey property.The Search panel appears automatically (since the MapSearchPanelOptions.Visible property value is true by default).
using DevExpress.XtraMap;
using System.Windows.Forms;
namespace ConnectBingSearchProvider {
public partial class Form1 : Form {
const string bingKey = "YOUR BING KEY HERE";
InformationLayer SearchLayer {
get {
return (InformationLayer)mapControl1.Layers["SearchLayer"];
}
}
public Form1() {
InitializeComponent();
BingSearchDataProvider searchProvider = new BingSearchDataProvider() {
BingKey = bingKey
};
searchProvider.SearchOptions.ResultsCount = 5;
SearchLayer.DataProvider = searchProvider;
}
}
}
Imports DevExpress.XtraMap
Imports System.Windows.Forms
Namespace ConnectBingSearchProvider
Partial Public Class Form1
Inherits Form
Private Const bingKey As String = "YOUR BING KEY HERE"
Private ReadOnly Property SearchLayer() As InformationLayer
Get
Return CType(mapControl1.Layers("SearchLayer"), InformationLayer)
End Get
End Property
Public Sub New()
InitializeComponent()
Dim searchProvider As New BingSearchDataProvider() With {.BingKey = bingKey}
searchProvider.SearchOptions.ResultsCount = 5
SearchLayer.DataProvider = searchProvider
End Sub
End Class
End Namespace
Object MapDisposableObject LayerBase MapItemsLayerBase InformationLayer
See Also