I'm trying to add a PushPin to a map in Windows Phone 8 from code behind. I know how to do this from XAML
<maps:Map x:Name="routeMap">
<maptk:MapExtensions.Children>
<maptk:Pushpin GeoCoordinate="22.34, 88.30" Content="My pin" />
</maptk:MapExtensions.Children>
</maps:Map>
How can I do this from code behind?
Thanks.