function initialize() { var mapOptions = { scrollwheel: false, center: new google.maps.LatLng(54.894564, 23.915434), zoom: 14, mapTypeId: google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map(document.getElementById("map"),mapOptions); var icon = { url: "template/pictures/pin.svg", scaledSize: new google.maps.Size(43, 65), origin: new google.maps.Point(0,0), anchor: new google.maps.Point(21, 65) }; posicion = new google.maps.LatLng(54.894564, 23.915434) marker = new google.maps.Marker({ position: posicion, map: map, icon: icon }); var styles = [ { "featureType": "all", "elementType": "labels.text.fill", "stylers": [ { "color": "#736c68" } ] }, { "featureType": "landscape.man_made", "elementType": "geometry.fill", "stylers": [ { "color": "#e7e6e5" } ] }, { "featureType": "landscape.natural", "elementType": "all", "stylers": [ { "visibility": "on" }, { "color": "#d4e4d3" } ] }, { "featureType": "poi", "elementType": "geometry.fill", "stylers": [ { "visibility": "on" }, { "color": "#f5f5f5" } ] }, { "featureType": "poi.park", "elementType": "geometry.fill", "stylers": [ { "color": "#d4e4d3" } ] }, { "featureType": "road", "elementType": "geometry.fill", "stylers": [ { "color": "#f5f5f5" } ] }, { "featureType": "road", "elementType": "geometry.stroke", "stylers": [ { "color": "#e7e6e5" }, { "gamma": "0.65" }, { "lightness": "0" } ] }, { "featureType": "transit", "elementType": "labels.text", "stylers": [ { "visibility": "off" } ] }, { "featureType": "water", "elementType": "all", "stylers": [ { "color": "#aad5df" } ] } ]; map.setOptions({styles: styles}); }