google.maps.event.addDomListener(window, 'load', init); function init() { 'use strict'; var myLatlng = new google.maps.LatLng(44.988496, 7.526956); var myLatlng2 = new google.maps.LatLng(41.6982461, 13.1266546); var mapOptions = { zoom: 6, disableDefaultUI: !1, scrollwheel: !1, center: myLatlng, styles: [{ "stylers": [{ "hue": "#ff1a00" }, { "invert_lightness": !0 }, { "saturation": -100 }, { "lightness": 33 }, { "gamma": 0.5 }] }, { "featureType": "water", "elementType": "geometry", "stylers": [{ "color": "#2D333C" }] }] }; var mapElement = document.getElementById('map'); var map = new google.maps.Map(mapElement, mapOptions); var marker = new google.maps.Marker({ position: myLatlng, map: map, icon: 'img/map-marker.png', title: 'MECTRANS' }) var marker2 = new google.maps.Marker({ position: myLatlng2, map: map, icon: 'img/map-marker.png', title: 'MECTRANS' }); }