我在google地图上方显示了一些奇怪的代码。如果加载地图时出错,通常会显示相同的代码。
我在控制台中没有任何错误,我真的不明白这个问题的原因或解决方法。我希望有人能对此有所了解。
我在网上搜索过,找不到任何相关信息。请参阅下面的图片或https:mavericksondarby.com.au
答案 0 :(得分:1)
看起来alternate中的以下样式负责
[data-icon]:before {
font-family: 'ElegantIcons';
content: attr(data-icon);
speak: none;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
地图div具有以下属性data-icon="assets/images/map-icon.png"
。因此,您将此样式应用于地图div。
答案 1 :(得分:0)
工作解决方案......
将此代码添加到css文件中:
div#map:before {
display: none;
}
并且不再显示代码。非常感谢谢尔盖的传奇!