为什么从SUMO调用OSM Web向导时会出现粉红色屏幕? 我附上了下面的图片。 OSM WEB view page
答案 0 :(得分:0)
加载OpenStreetMap磁贴似乎存在问题。我们最近有一个建议的修复,在加载磁贴时使用https而不是http。您可以尝试应用此修补程序https://github.com/eclipse/sumo/commit/3da7939ea19b246fb845267aa60f0d23ce66908a,或者只需在tools / webWizard / script.js中手动替换
行
map.addLayer(new OpenLayers.Layer.OSM);
与
var maplayer = new OpenLayers.Layer.OSM("OpenStreetMap",
// Official OSM tileset as protocol-independent URLs
[
'https://a.tile.openstreetmap.org/${z}/${x}/${y}.png',
'https://b.tile.openstreetmap.org/${z}/${x}/${y}.png',
'https://c.tile.openstreetmap.org/${z}/${x}/${y}.png'
], null);
map.addLayer(maplayer);