bing sdk脚本超时错误

时间:2017-07-17 08:35:58

标签: javascript bing-maps bing

我正在使用 BingMaps SDK 来管理我的应用上的位置。我的地图没有时常出现问题。

原因:abpBingLocations.js:241 GET https://www.bing.com/mapspreview/sdk/mapcontrol?branch=release&callback=initMap net :: ERR_TIMED_OUT

我的代码如下所示:

function loadScript() {
   // use global document since Angular's $document is weak
   var s = document.createElement('script');
   s.src = '//www.bing.com/api/maps/mapcontrol?branch=release&callback=initMap';
   document.body.appendChild(s);       
}

你们中的任何人都可以帮我解决这个错误吗?

1 个答案:

答案 0 :(得分:0)

我无法重现此问题。也许尝试将async和defer属性添加到脚本标记中。以下是我用来测试的代码示例:https://github.com/Microsoft/BingMapsV8CodeSamples/blob/master/Samples/Map/Lazy%20Loading%20the%20Map.html