Ejemplo n.º 1
0
        private void BouncePinBtn_Tapped(object sender, TappedRoutedEventArgs e)
        {
            Image forImage = new Image();

            forImage.Source = new BitmapImage(new Uri("ms-appx:///Assets/pin.png"));
            MapControl.SetLocation(forImage, MyMap.Center);
            MapItems.Items.Add(forImage);
            PushpinAnimations.Bounce(forImage, null, null);
        }
Ejemplo n.º 2
0
        private async void Bounce4PinsBtn_Tapped(object sender, TappedRoutedEventArgs e)
        {
            for (var i = 0; i < path.Positions.Count; i++)
            {
                Image forImage = new Image();
                forImage.Source = new BitmapImage(new Uri("ms-appx:///Assets/pin.png"));

                MapControl.SetLocation(forImage, new Geopoint(path.Positions[i]));
                MapItems.Items.Add(forImage);
                PushpinAnimations.Bounce(forImage, null, null);
                await Task.Delay(500);
            }
        }