我目前是 UWP MapControl 的新手。在将 XAML 子项添加到地图(而不是常规地图元素)时,我遇到了一个简单的问题。
这是我的代码:
private void MapRightTapped(MapControl sender, MapRightTappedEventArgs args)
{
Ellipse circle = new Ellipse() { Height = 20, Width = 20, Fill = new SolidColorBrush(Colors.Black)};
sender.Children.Add(circle);
Geopoint position = new Geopoint(new BasicGeoposition()
{
Latitude = args.Location.Position.Latitude,
Longitude = args.Location.Position.Longitude,
Altitude = 5000,
});
MapControl.SetLocation(circle, position);
MapControl.SetNormalizedAnchorPoint(circle, new Point(0.5, 0.5));
}
起初,该点在地图上正确显示。 但在缩放或倾斜地图后,圆圈似乎锚定在表面高度而不是 5000 的高度