我在应用程序中使用两个图钉实现了WPF bing映射。在桌面模式下可以正常工作。当我将其切换到笔记本电脑模式时,该缩放级别不会显示图钉。有时只显示一个图钉。
mapView.Center = new Location(13.626190171592853, 14.03621874999998);
mapView.ZoomLevel=5;
Pushpin first= new Pushpin
{
Location = new Location(Latitude, Longitude)
};
Pushpin second= new Pushpin
{
Location = new Location(Latitude, Longitude),
};