移动bing地图上的图钉

时间:2016-02-15 14:04:12

标签: c# windows-phone-8.1 bing-maps

我在Windows Phone 8.1上使用bing地图。我使用Image对象作为pin。

            var img = new Image();
            img.Width = 40;
            img.Height = 160;
            //img.Margin = new Thickness(-100,-100,0,0);
            switch (location.Type)
            {
                case 1:
                    {

                        var bmp = new BitmapImage();
                        bmp.UriSource = new Uri("ms-appx:///Assets/pin_moder@2x.png");
                        img.Source = bmp;
                        break;
                    }
                case 2:
                    {
                        var bmp = new BitmapImage();
                        bmp.UriSource = new Uri("ms-appx:///Assets/pin_roza@2x.png");
                        img.Source = bmp;
                        break;
                    }
                case 3:
                default:
                    {
                        var bmp = new BitmapImage();
                        bmp.UriSource = new Uri("ms-appx:///Assets/pin_rumen@2x.png");
                        img.Source = bmp;
                        break;
                    }
            }
            MapControl.Children.Add(img);

            var position = new BasicGeoposition();
            position.Latitude = location.Latitude;
            position.Longitude = location.Longtitude;

            MapControl.SetLocation(img, new Geopoint(position));
            MapControl.SetNormalizedAnchorPoint(img, new Point(0.5,0.5));
        }

这是处理引脚添加的代码。 然而,当引脚放在地图上,并且我在地图上移动时,在地图上移动时,引脚会“摇动”(从左到右,从上到下移动一点)。当我停止在地图上移动时,这种不稳定的东西消失了。

我做错了什么?

1 个答案:

答案 0 :(得分:1)

我认为当在WP8.1地图控件上覆盖XAML控件时,这是一个已知问题。请注意,WP8.1地图不是Bing地图,而是HERE地图。