您可以在此地图中隐藏设置界面中的流量部分吗? hide traffic
我在地图上不需要任何交通信息。 是否也可以改变ui的颜色。 谢谢Othmar
答案 0 :(得分:0)
摘要:
截至2018年8月8日,API中似乎没有任何选项可以创建没有流量视图的默认UI。
您可以使用以下代码清理默认菜单:
let mapsettings = ui.getControl('mapsettings');
let menuEntries = mapsettings.getChildren()[1].getChildren();
menuEntries[0].getElement().style.borderBottom = 'none';
for (let i=1; i<menuEntries.length; i++)
menuEntries[i].setVisibility(false);