0

我有一个 Windwows Phone 应用程序,它允许用户在地图上查看他通过扫描二维码获得的初始位置。当用户扫描二维码时,他会获得存储在网络服务器中的地图的 URL 以及他初始位置的 X 和 Y 坐标。

我在 .xaml 页面中创建了一个地图图像容器:

<Image x:Name="ImagePanel" Width="470" Margin="5,0,5,98" Grid.Row="1" />

在 .cs 页面中,我从服务器下载了地图图像:

    public void DownloadImage(string URLmappa)
    {

        ImagePanel.Source = new BitmapImage(new Uri(URLmappa));

        WebClient wc = new WebClient();
        wc.OpenReadCompleted += new OpenReadCompletedEventHandler(wc_OpenReadCompleted);

        try
        {

            wc.OpenReadAsync(new Uri(URLmappa), wc);

        }

        catch (Exception ex)
          {
              MessageBox.Show(ex.Message); 
          }

    }


    void wc_OpenReadCompleted(object sender, OpenReadCompletedEventArgs e)  
            {  
               if (e.Error == null && !e.Cancelled)  
              {  
                  try  
                  {  
                     BitmapImage image = new BitmapImage();  
                     image.SetSource(e.Result);  
                     ImagePanel.Source = image;  
                  }  
                  catch (Exception ex)  
                  {
                      MessageBox.Show(ex.Message); 
                  }  
              }  
              else  
              {
                  MessageBox.Show("It's impossibile to download map from server");
              }  

                    }

...它可以工作,但困难的部分是在图像上标记位置(报告)。

我发现了这样的东西:

    public void MarkLocation(int posizioneX, int posizioneY)
    {
var imageMarker = new System.Web.UI.WebControls.Image { ImageUrl = "/pin.jpg" };
imageMarker.Style.Value = string.format("position:absolute;top:{0}px;left:{1}px;display:block;width:30px; height:30px;", point.X, point.Y);
imagePanel.Controls.Add(imageMarker); }

但它不适用于 Windows Phone。

我对如何在给定 X,Y 坐标的图像上标记位置的建议感兴趣。

替代方法将不胜感激。

4

1 回答 1

0

您可以将图像放在画布上并绝对定位标记元素,就像您尝试使用 web 控件一样。或者,您可以使用WriteableBitmapEx在图像上写入标记

于 2013-02-21T17:32:36.493 回答