View Single Post
Posts: 86 | Thanked: 22 times | Joined on Jan 2008 @ Moscow
#47
Originally Posted by YoDude View Post
Thanks... I know. Also some code increases load times very much. That is why I want to go with the minimum large map and leave the search to the tablets "Internet Search Bar"
Hey YoDude, here's a minimal version you have requested (only map type buttons included, no search, no zoom etc.):

Code:
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("maps.google.com") {

.helplinks {
visibility:hidden !important;
overflow:hidden !important;
width:0px !important;
height:0px !important;
}
#map {
position:fixed !important;
left:-10px !important;
top:0px !important;
width:100% !important;
height:100% !important;
}

/*map navbuttons*/
.gmnoprint>div:first-child>div>img, .gmnoprint>div+div {display:none !important;}
#amtc_option_0, #amtc_option_1, #amtc_option_2, #amtc_option_3, #cbcontrol, #trafficcontrol {-moz-opacity:0.9; display:block !important}
#amtc_option_0:hover, #amtc_option_2:hover, #amtc_option_3:hover, #amtc_option_1:hover, #cbcontrol:hover, #trafficcontrol:hover {-moz-opacity:1;}
#map>div:first-child+div>* {display:none !important;}

/*search*/
.ipt, #showss, #srchex, #sl1, #sl2, #hidess, .vbtn {display:none !important}

}
To have just the naked map you need to replace this:
Code:
#amtc_option_0, #amtc_option_1, #amtc_option_2, #amtc_option_3, #cbcontrol, #trafficcontrol {-moz-opacity:0.9; display:block !important}
with this:
Code:
#amtc_option_0, #amtc_option_1, #amtc_option_2, #amtc_option_3, #cbcontrol, #trafficcontrol {-moz-opacity:0.9; display:none !important}
 

The Following User Says Thank You to sashabe For This Useful Post: