在 Worldwind Android 中使用 Bing

Posted

技术标签:

【中文标题】在 Worldwind Android 中使用 Bing【英文标题】:Use Bing in Worldwind Android 【发布时间】:2018-08-14 09:43:26 【问题描述】:

在 Worldwind android 中使用必应图像

如何在 Worldwind Android 中使用必应图像?

这是正确的方法吗?

WmsLayerConfig config = new WmsLayerConfig();
    config.serviceAddress = "http://www.microsoft.com/maps/assets/docs/terms.aspx/";

【问题讨论】:

【参考方案1】:

NASA 为 Bing 提供 WMS 服务。试试这个:

//Bing hybrid
String serviceAddress = "https://worldwind27.arc.nasa.gov/wms/virtualearth?request=getcapabilities&service=WMS";
WmsLayerConfig config = new WmsLayerConfig();
config.serviceAddress = serviceAddress;
config.wmsVersion = "1.3.0";
config.layerNames = "ve-h"; //ve-h for hybrid, ve-r for street
WmsLayer wmsLayer = new WmsLayer(new Sector().setFullSphere(), 1, config);
wwd.getLayers().addLayer(wmsLayer);

【讨论】:

以上是关于在 Worldwind Android 中使用 Bing的主要内容,如果未能解决你的问题,请参考以下文章

WorldWind:地面高度

在 NASA Worldwind 中实现 XYZ 平铺层

Worldwind 服务器不显示在 OpenLayers 3 中

Worldwind - 形状总是显示在图像之上?

CompassLayer 未出现在 WorldWind 中

如何在地理坐标中获取 WorldWind 地球的边界