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.v18.2.dll

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

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

The following code snippets (auto-collected from DevExpress Examples) contain references to the MapCustomElementSettings class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also