A newer version of this page is available.
Switch to the current version.
MapCustomElementSettings Class
Contains settings to generate custom map elements.
Namespace: DevExpress.Xpf.Map
Assembly: DevExpress.Xpf.Map.v18.2.dll
Declaration
public class MapCustomElementSettings :
MapItemSettings
Public Class MapCustomElementSettings
Inherits MapItemSettings
Related API Members
The following members accept/return MapCustomElementSettings objects:
Remarks
This class introduces the MapCustomElementSettings.ContentTemplate, MapCustomElementSettings.ContentTemplateSelector and MapCustomElementSettings.Template properties, which allow specifying the content template, template selector and template of all map custom elements generated using these settings.
Examples
NOTE
A complete sample project is available at https://github.com/DevExpress-Examples/how-to-customize-a-mini-maps-layers-t200327.
<dxm:ListSourceDataAdapter.ItemSettings>
<dxm:MapCustomElementSettings>
<dxm:MapCustomElementSettings.ContentTemplate>
<DataTemplate>
<Image Source="Images/Ship.png" Width="40" Height="40">
<Image.RenderTransform>
<TranslateTransform X="-20" Y="-20"/>
</Image.RenderTransform>
</Image>
</DataTemplate>
</dxm:MapCustomElementSettings.ContentTemplate>
</dxm:MapCustomElementSettings>
</dxm:ListSourceDataAdapter.ItemSettings>
Inheritance
Extension Methods
See Also
Feedback