It is very simple, I made an example here http://jsfiddle.net/paulalexandru/T2F5Z/ , and also added the following code:
HTML code
<div id="map"></div>
<div id="menu">
<h1>Header 1</h1>
<h2>Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
</div>
CSS CODE
#map {
height: 100%;
width: 100%;
left: 0;
position: absolute;
top: 0;
}
#menu {
position: absolute;
top: 10px;
left: 10px;
}
JAVASCRIPT CODE
jQuery(document).ready(function () {
var map;
var style = [
{
stylers: [
{ saturation: "-100" },
{ lightness: "20" }
]
},{
featureType: "poi",
stylers: [
{ visibility: "off" }
]
},{
featureType: "transit",
stylers: [
{ visibility: "off" }
]
},{
featureType: "road",
stylers: [
{ lightness: "50" },
{ visibility: "on" }
]
},{
featureType: "landscape",
stylers: [
{ lightness: "50" }
]
}
]
var options = {
zoom: 7,
center: new google.maps.LatLng(45.50867, -73.553992),
mapTypeId: google.maps.MapTypeId.ROADMAP,
disableDefaultUI: true
};
map = new google.maps.Map($('#map')[0], options);
map.setOptions({
styles: style
});
});
Note. To remove controls, you need to use disableDefaultUI: true(see https://developers.google.com/maps/documentation/javascript/examples/control-disableUI ) so that the color is black and white, you need to install a map to make the map full screen mode, you must set the width and height to 100%, and do not forget the absolute position, as you see in css.
source
share