var image1; // markers in arrays function initialize() { var styles = [{"featureType":"all","stylers":[{"saturation":100},{"hue":"#014694"}]},{"featureType":"road","stylers":[{"saturation":-40}]},{"featureType":"transit","stylers":[{"visibility":"off"}]},{"featureType":"poi","stylers":[{"visibility":"off"}]},{"featureType":"water","stylers":[{"visibility":"simplified"},{"saturation":-60}]}]; var styledMap = new google.maps.StyledMapType(styles, {name: "Styled Map"}); var map_canvas = document.getElementById('map_canvas'); var myLatLng = new google.maps.LatLng(50.6771, 14.5246); var mapOptions = { zoom: 15, center: myLatLng, scrollwheel: false, mapTypeId: google.maps.MapTypeId.ROADMAP }; map = new google.maps.Map(document.getElementById('map_canvas'),mapOptions); map.mapTypes.set('map_style', styledMap); map.setMapTypeId('map_style'); var myLatLng = new google.maps.LatLng(50.6771, 14.5246); var image = new google.maps.MarkerImage( 'pcs/marker-big.png', new google.maps.Size(35, 35), new google.maps.Point(0,0), new google.maps.Point(17,17) ); var marker1 = new google.maps.Marker({ position: myLatLng, map: map, icon: image, title: 'Česká Lípa' }); } google.maps.event.addDomListener(window, 'load', initialize);