我有一个Windwows Phone应用程序,允许用户在地图上查看通过扫描qr代码获得的初始位置。当用户扫描Qr Code时,他获取存储在Web服务器中的地图的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坐标的图像上标记位置的建议感兴趣。
我们将不胜感激。