gpt4 book ai didi

c# - 在 UWP 中将图钉添加到 MapControl

转载 作者:太空狗 更新时间:2023-10-30 00:39:43 26 4
gpt4 key购买 nike

我想在 Windows 10 应用程序中将图钉添加到 MapControl,但该控件似乎从 Windows 8.1 开始就消失了。

Pushpin

就这么简单:

Pushpin locationPushpin = new Pushpin();                      
locationPushpin.Background = new SolidColorBrush(Colors.Purple);
locationPushpin.Content = "You are here";
locationPushpin.Tag = "locationPushpin";
locationPushpin.Location = watcher.Position.Location;
this.map.Children.Add(locationPushpin);
this.map.SetView(watcher.Position.Location, 18.0);

但是图钉类型不再被识别...

最佳答案

map 控件在 UWP 中变化不大 - 看看 Windows.UI.Xaml.Controls.Maps namespace .

至于添加图钉(POI),您可以do it in couple of ways .例如:

// get position
Geopoint myPoint = new Geopoint(new BasicGeoposition() { Latitude = 51, Longitude = 0 });
//create POI
MapIcon myPOI = new MapIcon { Location = myPoint, NormalizedAnchorPoint = new Point(0.5, 1.0), Title = "My position", ZIndex = 0 };
// add to map and center it
myMap.MapElements.Add(myPOI);
myMap.Center = myPoint;
myMap.ZoomLevel = 10;

更多指南 visit MSDN .

关于c# - 在 UWP 中将图钉添加到 MapControl,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33580993/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com