UWP has slightly changed map management - look at the Windows.UI.Xaml.Controls.Maps namespace .
Regarding the addition of Pushpins (POIs), you can do this in several ways . For example:
Geopoint myPoint = new Geopoint(new BasicGeoposition() { Latitude = 51, Longitude = 0 });
MapIcon myPOI = new MapIcon { Location = myPoint, NormalizedAnchorPoint = new Point(0.5, 1.0), Title = "My position", ZIndex = 0 };
myMap.MapElements.Add(myPOI);
myMap.Center = myPoint;
myMap.ZoomLevel = 10;
Additional recommendations to visit MSDN .
source
share