使用插件版本 6.2.2.x 我似乎无法加载需要证书才能访问的地面覆盖。如下代码片段会导致插件向用户请求证书,但它似乎忽略了它,因为插件没有获得覆盖并显示丢失的覆盖红色 X。
this.groundOverlay = this.earth.createGroundOverlay('');
this.overlayImg = this.earth.createIcon('');
this.viewBb = this.earth.getView().getViewportGlobeBounds();
this.overlayImg.setHref('https://host:port/wms?...');
this.groundOverlay.setIcon(this.overlayImg);
this.groundOverlay.setLatLonBox(this.viewBb);
this.earth.getFeatures().appendChild(this.groundOverlay);
有谁知道这是否应该/不应该工作?我已经阅读了有关 GE 胖客户端的证书问题,但对插件一无所知。