当前位置: 代码迷 >> .NET Framework >> 关于Silverlight Bing Maps卫星map的显示
  详细解决方案

关于Silverlight Bing Maps卫星map的显示

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

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


private const string url = "http:[email protected]&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
我做了个演示,欢迎与我交流
  相关解决方案