【发布时间】:2020-06-21 00:53:22
【问题描述】:
如何增加 MapIcons 和 Billboard Images 的大小?我已经尝试过样式表缩放以及 C# 代码,但它似乎没有改变。
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"))
};
【问题讨论】: