gpt4 book ai didi

windows-phone-7 - 离线模式下带有自定义图层的 Windows Phone 7 map 控制

转载 作者:行者123 更新时间:2023-12-04 11:30:44 25 4
gpt4 key购买 nike

嗨 WP7 移动热情的开发人员!

我正在尝试使用 Windows Phone 控件中默认提供的 Bing map 控件。
具体来说,我正在尝试使用自定义 TileSource 来提供自定义制作的平铺 map ,该 map 将作为文件夹(内容文件)或隔离存储存储在项目中。

下面我展示了我尝试与以 ZXY 存储格式作为内容文件存储在“ map ”文件夹中的 map 图块/图像一起使用的自定义类。

public class CustomTileSource : Microsoft.Phone.Controls.Maps.TileSource 
{

private string uriFormat = @"map/{0}/{1}/{2}.png";
public string UriFormat
{
get { return uriFormat; }
set { uriFormat = value; }
}

public override Uri GetUri(int x, int y, int zoomLevel)
{
var url = string.Format(UriFormat, zoomLevel, x, y);
return new Uri(url, UriKind.Relative);
}
}

尝试使用它是行不通的,尽管没有抛出错误,但不会显示自定义图块。
有没有人尝试过以这种方式使用 Windows 手机 map 控件?
如果这不是正确的方法,哪一个是?任何解决方法?

先感谢您!

克劳迪乌

最佳答案

您是否将图像上的构建操作设置为 Content ?

关于windows-phone-7 - 离线模式下带有自定义图层的 Windows Phone 7 map 控制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4386391/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com