Using CSS override method can be, but the official is not allowed to do so, refer to: http://developer.baidu.com/map/question.htm
Copy codeThe Code is as follows:
<! DOCTYPE html>
<Html>
<Head>
<Meta charset = "UTF-8"/>
<Title> remove Baidu map LOGO and copyright information using javascript </title>
<Script type = "text/javascript" src = "// jquery. js"> </script>
<Script src = "http://api.map.baidu.com/api? V = 1.3 "type =" text/javascript "> </script>
<Script type = "text/javascript">
Function initialize (){
Var mp = new BMap. Map ('map ');
Mp. centerAndZoom (new BMap. Point (121.491, 31.233), 11 );
}
Window. onload = initialize;
</Script> =
<Style type = "text/css">
. AnchorBL {
Display: none;
}
</Style>
</Head>
<Body>
<Input type = "button" onclick = "$ ('# map div. anchorBL'). hide ();" value = "Remove map LOGO and copyright description"/>
<Div id = "map" style = "width: 400px; height: 40px"> </div>
</Body>
</Html>