Openlayers Bing地图未在Chrome中加载

Openlayers Bing地图未在Chrome中加载,openlayers,bing-maps,Openlayers,Bing Maps,Bing地图未加载。 以下代码编写: this.layer = new ol.layer.Tile({ title: 'Bing Maps aerial', type: 'base', visible: false, source: new ol.source.BingMaps({ culture: "en-GB", key: '123adaf', imagerySet: 'AerialWithLabels' }) }) OSM、雄蕊

Bing地图未加载。 以下代码编写:

this.layer = new ol.layer.Tile({
  title: 'Bing Maps aerial',
  type: 'base',
  visible: false,
  source: new ol.source.BingMaps({
    culture: "en-GB",
    key: '123adaf',
    imagerySet: 'AerialWithLabels'        
  })
})
OSM、雄蕊等都运转良好,但BingMap则不然。 我使用的是Chrome版本:58.0.3029.110(64位) 是不是BingMaps没有出现在Chrome中?
如何解决这个问题?

Bing地图在Chrome中运行良好。开放层中的Bing地图层在Chrome中也能正常工作:

检查网络请求并查找对Bing地图图像服务的请求,以查看其响应是否没有任何错误。如果发生错误,您的Bing maps密钥或帐户可能存在问题。以下是Bing地图图像服务请求URL的示例:


可以创建示例JSFIDLE或任何地方。。在那里我们可以重现同样的错误,或者看到你迄今为止尝试过的任何东西?