Como puedo en windows phone 8 con los mapas de nokia poner una etiqueta con el nombre del lugar
Grid miGrid = new Grid();
miGrid.RowDefinitions.Add(new RowDefinition());
miGrid.RowDefinitions.Add(new RowDefinition());
miGrid.Background = new SolidColorBrush(Colors.White);
Rectangle mirectangle = new Rectangle();
mirectangle.Fill = new SolidColorBrush(Colors.Black);
mirectangle.Height = 20;
mirectangle.Width = 20;
mirectangle.SetValue(Grid.RowProperty, 0);
mirectangle.SetValue(Grid.ColumnProperty, 0);
miGrid.Children.Add(mirectangle);
MapOverlay mimapa = new MapOverlay();
mimapa.Content = miGrid;
mimapa.GeoCoordinate = new GeoCoordinate(36.65960623, -4.468002319);
mimapa.PositionOrigin = new Point(0, 0.5);
MapLayer Milayer = new MapLayer();
Milayer.Add(mimapa);
mapa.Layers.Add(Milayer);