Как я могу заполнить несколько изображений Silverlight из асинхронных вызовов Bing Maps? - PullRequest
0 голосов
/ 11 июля 2011

У меня есть следующий код, который отлично работает, если вы просто хотите заполнить одно изображение ответом от Bing Maps. Но если я попытаюсь сделать два, тогда переменная _currentImage всегда будет «image1», потому что вызовы асинхронные. Как передать переменную изображения в метод ImageryServiceGetMapUriCompleted?

using System;
using System.Windows.Controls;
using System.Windows.Media.Imaging;
using BasicBingMapsImagerySvc.ImageryService;

namespace BasicBingMapsImagerySvc
{
    public partial class MainPage : UserControl
    {
        private const string BingMapsKey = "my key";

        private Image _currentImage;

        public MainPage()
        {
            InitializeComponent();

            GetMap(42.573377, -101.032251, image0, MapStyle.AerialWithLabels);

            GetMap(42.573377, -101.032251, image1, MapStyle.Road_v1);
        }


        private void GetMap(double lat, double lon, Image image, MapStyle mapStyle)
        {
            var mapUriRequest = new MapUriRequest();

            // Set credentials using a valid Bing Maps key
            mapUriRequest.Credentials = new Credentials();
            mapUriRequest.Credentials.ApplicationId = BingMapsKey;

            // Set the location of the requested image
            mapUriRequest.Center = new Location();
            mapUriRequest.Center.Latitude = lat;
            mapUriRequest.Center.Longitude = lon;

            // Set the map style and zoom level
            var mapUriOptions = new MapUriOptions();
            mapUriOptions.Style = mapStyle;
            mapUriOptions.ZoomLevel = 13;

            // Set the size of the requested image to match the size of the image control
            mapUriOptions.ImageSize = new SizeOfint();
            mapUriOptions.ImageSize.Height = 256;
            mapUriOptions.ImageSize.Width = 256;

            mapUriRequest.Options = mapUriOptions;

            var imageryService = new ImageryServiceClient("BasicHttpBinding_IImageryService");
            imageryService.GetMapUriCompleted += ImageryServiceGetMapUriCompleted;

            _currentImage = image;

            imageryService.GetMapUriAsync(mapUriRequest);


        }

        private void ImageryServiceGetMapUriCompleted(object sender, GetMapUriCompletedEventArgs e)
        {
            // The result is an MapUriResponse Object
            MapUriResponse mapUriResponse = e.Result;
            var bmpImg = new BitmapImage(new Uri(mapUriResponse.Uri));

            _currentImage.Source = bmpImg;
        }
    }
}

1 Ответ

1 голос
/ 11 июля 2011

Вы можете использовать лямбда-выражение / делегат для вашего обработчика событий, который позволяет вам «захватить» ссылку на изображение:

  var imageryService = new ImageryServiceClient("BasicHttpBinding_IImageryService");
  imageryService.GetMapUriCompleted += (s,e) =>
     {
         // The result is an MapUriResponse Object
         MapUriResponse mapUriResponse = e.Result;
         var bmpImg = new BitmapImage(new Uri(mapUriResponse.Uri));

         // set the image source
         image.Source = bmpImg;
    };
...