How to add a label with a white label and a button in the label on the map? Like this: enter image description here

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; 

And it looks like this: enter image description here

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.

    1 answer 1

    If you mean windows maps, then there is a comprehensive guide on MSDN

    In general, get used to using reference materials - simply because with their help simple questions are solved much faster. And even the most complex issues are solved much faster if you use reference materials.

    • I didn’t find there how to customize tags ... ( - Denisok