MapCustomElementSettings Class
Contains settings to generate custom map elements.
Namespace: DevExpress.Xpf.Map
Assembly: DevExpress.Xpf.Map.v24.1.dll
NuGet Package: DevExpress.Wpf.Map
Declaration
Related API Members
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>
Inheritance
See Also