How to add a label with a white label and a button in the label on the map? Like this: 
Adding a label by examples, I found only such a varaint:
map.Center = new Geopoint(new BasicGeoposition() { Latitude = p.Adress[p.Checked].Latitude, Longitude = p.Adress[p.Checked].Longitude }); MapIcon mapIcon1 = new MapIcon(); mapIcon1.Location = map.Center; mapIcon1.NormalizedAnchorPoint = new Point(0.5, 1.0); // mapIcon1.Title = "Школа № " + p.Number; mapIcon1.Title = "Метка"; mapIcon1.Image = RandomAccessStreamReference.CreateFromUri(new Uri("ms-appx:///Resource/mappin.png")); mapIcon1.ZIndex = 0; map.MapElements.Add(mapIcon1); map.ZoomLevel = 16; That is, the difficulty is in displaying the interface of the label itself. It is necessary that when the label is displayed, a button appears next to the name. As an example.
