I am creating maps where in some cases the pushpins represent locations where events occurred and where the date of the events are significant. I want to display the order of the chronological events on the pushpins themselves (with additional data being available to the user via the toolip property/by hovering).
For example, I want a map that looks like this:
...to look something like this:
Is there a way to do this?


You can use either of the following options:
Set Content of Pushpin
You can set the Content property of the Pushpin to the text that you want to show on pushpin.
For example the following code, shows 1-base index of the pushpins on map:
The text will be clipped to balloon area, so don't use a long text there.
Add TextBlock to MapLayer
You can also add MapLayer and then add
TextBlockorLabelto show longer texts: