日期:2014-05-20  浏览次数:20704 次

关于Silverlight Bing Maps卫星地图的显示
各位大侠
  小弟最近在研究bing maps的卫星地图,发现微软的卫星地图和Google的卫星地图在定位中出现很多的偏差,有什么办法可以解决这个问题啊?或者怎样使用bing maps调用Google的卫星地图呢?
  有劳大侠们前来指教,感激不尽啊!

------解决方案--------------------
完全可以


private const string url = "http://mt{0}.google.com/vt/lyrs=s@113&hl=zh-CN&gl=cn&src=app&x={1}&y={2}&z={3}&s=Ga";
public GoogleAerialTitleSource() : base(url) { }
public override Uri GetUri(int x, int y, int zoomLevel)
{
return new Uri(string.Format(base.UriFormat, new object[] { x % 4, x, y, zoomLevel }));
}

------解决方案--------------------
http://sl.abis.com.cn/setup.aspx
我做了个演示,欢迎与我交流