Skip to main content
A newer version of this page is available. .

MapCustomElementSettings Class

Contains settings to generate custom map elements.

Namespace: DevExpress.Xpf.Map

Assembly: DevExpress.Xpf.Map.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Map, DevExpress.Wpf.Map

Declaration

public class MapCustomElementSettings :
    MapItemSettings

The following members 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.

Example

View Example

<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>
See Also