Skip to main content

MapItem.Attributes Property

Gets the attributes for this map item.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v23.2.dll

NuGet Package: DevExpress.Win.Map

Declaration

public MapItemAttributeCollection Attributes { get; }

Property Value

Type Description
MapItemAttributeCollection

A MapItemAttributeCollection object.

Remarks

Attributes are used to associate a vector item with supplementary information. A vector item is represented by the MapItemAttribute object. This object can be accessed as an item of the MapItemAttributeCollection object returned by the MapItem.Attributes property of the MapItem class descendant.

For more information on map item attributes, see Provide Data Using Vector Item Attributes.

Example

private MapPolygon CreatePolygon(double areaValue, string polygonName, GeoPoint[] points) {
    MapPolygon item = new MapPolygon();

    item.Attributes.Add(new MapItemAttribute() {
        Name = areaValueAttrName,
        Type = typeof(double),
        Value = areaValue
    });
    item.Attributes.Add(new MapItemAttribute() {
        Name = polygonNameAttrName,
        Type = typeof(string),
        Value = polygonName
    });

    item.ToolTipPattern = "{" + polygonNameAttrName + "}=<b>{" + areaValueAttrName + "}</b>";

    foreach (GeoPoint point in points) {
        item.Points.Add(point);
    }

    return item;
}
See Also