地图的水印去除官方没有文档和方法,主要的去除方式还是依靠前端通过权重和样式穿透进行元素的隐藏。
水印的图片和字体在调试工具中都没有特定的类名和id名称,所以最好的方式就是通过调试工具定位标签。
然后通过display:none进行元素隐藏即可
/*** less ***/
/deep/a {
img {
display: none !important;
}
}
/deep/.logo-text {
display: none !important;
}
去除完成之后如图: