windowsforms-devexpress-dot-xtramap-a472ebd6.md
The class used to draw a pushpin on a map.
Namespace : DevExpress.XtraMap
Assembly : DevExpress.XtraMap.v25.2.dll
NuGet Package : DevExpress.Win.Map
public class MapPushpin :
MapPointer
Public Class MapPushpin
Inherits MapPointer
The following members return MapPushpin objects:
The Map Pushpin is a pointer that marks a geographical point on the map. Use the MapPointer.Location property to specify the pushpin position on a map.
The following image shows the map pushpin example.
If a custom image is not specified, the pushpin uses the default one.
ItemStorage.Items.Add(new MapPushpin() { Location = new GeoPoint(70, -100), Text = "1" });
ItemStorage.Items.Add(New MapPushpin() With {.Location = New GeoPoint(70, -100), .Text = "1"})
Object MapItem MapPointer MapPushpin
See Also