1

我是 Windows Phone 开发的新手,我目前正在为一家公司构建一个应用程序,该公司想要使用自己的地图(构建地图块)。我想在解决方案中使用 BingMap silverlight 控件。我的问题是:这真的可能吗?我试图通过像这样从 MapTiles 类继承来覆盖“GetUri”方法;

public class MyTiles : Microsoft.Phone.Controls.Maps.TileSource
{
    public override Uri GetUri(int x, int y, int zoomLevel)
    {
        if (zoomLevel > 0)
        {
            var Url = string.Format(UriFormat, Server, MapMode, zoomLevel, x, y);
            return new Uri(Url);
        }
        return null;
    }
}

是否可以在没有 HTTP 请求的情况下加载地图?

提前谢谢了

Nroblex

4

1 回答 1

1

Unfortunately the only way is to host the tiles over the internet: http://social.msdn.microsoft.com/Forums/en-US/94c2d9bc-f1a7-4201-9e5a-4d6a47d285cb/maptilelayer-with-local-tiles?forum=bingmapswindows8

Whilst in development you could try WAMP (http://www.wampserver.com/en/) and then serve the tiles from localhost:

MapTileLayer tileLayer = new MapTileLayer();
tileLayer.GetTileUri += tileLayer_GetTileUri;

private void tileLayer_GetTileUri(object sender, GetTileUriEventArgs e)
{
    string quadkey = TileToQuadkey(e.X, e.Y, e.LevelOfDetail);
    e.Uri = new Uri(String.Format("http://localhost/tiles/{0}.png", quadkey));
}

The TileToQuadkey method is described here: http://msdn.microsoft.com/en-us/library/bb259689.aspx

But for production you will need to replace WAMP with your own web server.

于 2014-02-23T13:36:56.163 回答