如何在不同屏幕上获得理想的地图缩放级别?

时间:2019-07-04 10:58:14

标签: c# wpf bing-maps

我在应用程序中使用两个图钉实现了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),                   
            };

0 个答案:

没有答案