How do you increase the size of MapIcons and Billboard Images? I've tried the stylesheets scaling as well as C# code, but it does not seem to change.
var mapIcon = new MapIcon()
{
Location = new Geopoint(
new BasicGeoposition
{
Latitude = entry.Latitude,
Longitude = entry.Longitude,
}),
NormalizedAnchorPoint = new Windows.Foundation.Point(0.5, 1.0),
Title = entry.Name,
Image = RandomAccessStreamReference.CreateFromUri(new Uri($"ms-appx:///Assets/KMZ/Pins/icon.png"))
};