Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

MapItemAttributeCollection Class

A collection of attributes for an individual map item.

Namespace: DevExpress.Xpf.Map

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

NuGet Package: DevExpress.Wpf.Map

#Declaration

public class MapItemAttributeCollection :
    MapDependencyObjectCollection<MapItemAttribute>

The following members return MapItemAttributeCollection objects:

#Remarks

An object of this class is accepted using the MapItem.Attributes property.

#Example

To associate additional information to a vector item, use the vector item atributes. To do this, create an MapItemAttribute object, specify its MapItemAttribute.Name, MapItemAttribute.Value and optionally, the MapItemAttribute.Type. Add the object to the MapItem.Attributes collection. After that, it is possible to use these attributes, for example, to display in the item’s title.

<dxm:MapDot Location="51.507222, -0.1275" Size="10" Fill="Red" 
            TitleOptions="{StaticResource titleOptions}">
    <dxm:MapDot.Attributes>
        <dxm:MapItemAttribute Name="Name" Value="London"/>
    </dxm:MapDot.Attributes>
</dxm:MapDot>
See Also